Skip to content

Instantly share code, notes, and snippets.

@imack
Created August 29, 2014 15:56
Show Gist options
  • Save imack/78958fa4786315cf9014 to your computer and use it in GitHub Desktop.
Save imack/78958fa4786315cf9014 to your computer and use it in GitHub Desktop.
// Set the application defaults
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSDictionary *appDefaults = [NSDictionary dictionaryWithObject:@"YES"
forKey:@"showTutorial"];
[defaults registerDefaults:appDefaults];
[defaults synchronize];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
BOOL enabled = [defaults boolForKey:@"showTutorial"];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
BOOL enabled = [defaults boolForKey:@"showTutorial"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment