Created
March 3, 2012 17:41
-
-
Save pablasso/1967095 to your computer and use it in GitHub Desktop.
NSUserDefaults example
This file contains hidden or 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
// set any object | |
[[NSUserDefaults standardUserDefaults] setObject:@"this is some string" forKey:@"test"]; | |
[[NSUserDefaults standardUserDefaults] synchronize]; | |
// retrieve object | |
[[NSUserDefaults standardUserDefaults] objectForKey:@"test"]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment