Created
October 1, 2011 08:43
-
-
Save jamessa/1255775 to your computer and use it in GitHub Desktop.
UserDefault Sample
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
/// Save Key | |
NSUserDefaults *userDefaults; | |
userDefaults = [NSUserDefaults standardUserDefaults]; | |
[userDefaults setObject:api forKey:@"APIURLString"]; | |
[userDefaults synchronize]; // save | |
// Get Key | |
NSString *currentUserIdentifier = [[NSUserDefaults standardUserDefaults] objectForKey:@"WhoAmI"]; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment