Skip to content

Instantly share code, notes, and snippets.

@nxax
Created August 16, 2012 07:14
Show Gist options
  • Save nxax/3367632 to your computer and use it in GitHub Desktop.
Save nxax/3367632 to your computer and use it in GitHub Desktop.
Detect first launch iOS
// http://stackoverflow.com/questions/308832/iphone-the-quickest-and-easiest-way-to-detect-first-launch
// -applicationDidFinishLaunching:
[[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES],@"firstLaunch",nil]];
// to check it:
[[NSUserDefaults standardUserDefaults] boolForKey:@"firstLaunch"];
// -applicationWillTerminate:
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"firstLaunch"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment