This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In MyLoginViewController.m | |
- (IBAction)loginWithSocial { | |
// Don't need username/password because we are logging in socially. | |
CMUser *myNewUser = [[CMUser alloc] init]; | |
[myNewUser loginWithSocialNetwork:CMSocialNetworkTwitter viewController:self params:nil callback:^(CMUserAccountResult resultCode, NSArray *messages) { | |
if (resultCode == CMUserAccountLoginSucceeded) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4EDF5248-CCF8-4040-B8B2-E83C98B52499 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
751A4522-EAF3-46B3-920E-07A33D52F01D - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
446B26F2-88BE-450C-8FAC-17BF91AE6B93 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
524CF814-EB6C-458B-95CE-D0A8EFC77402 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
B58E12CE-38C5-44BC-9423-6B05E3545D43 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
F076CC41-7E8B-41D6-A3F2-27ED9C681E40 - String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String file contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// app delegate | |
// | |
RKObjectManager *manager = [RKObjectManager objectManagerWithBaseURL:@"http://129.21.140.120:8080"]; | |
manager.objectStore = [RKManagedObjectStore objectStoreWithStoreFilename:@"db.sqlite"]; | |
//manager.objectStore.managedObjectCache = [[CustomCache alloc] init]; | |
manager.client.requestQueue.showsNetworkActivityIndicatorWhenBusy = YES; | |
manager.acceptMIMEType = RKMIMETypeJSON; | |
manager.serializationMIMEType = RKMIMETypeJSON; |