Skip to content

Instantly share code, notes, and snippets.

@maio
Created September 9, 2010 21:31
Show Gist options
  • Save maio/572615 to your computer and use it in GitHub Desktop.
Save maio/572615 to your computer and use it in GitHub Desktop.
// outlets
IBOutlet UILabel *label;
// actions
- (IBAction)onChange:(id)sender;
// storage
[[NSUserDefaults standardUserDefaults] storeFloat: 123 forKey: @"key"];
float value = [[NSUserDefaults standardUserDefaults] floatForKey: @"key"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment