1

I am creating an app which requires the users to enter certain values when the app is used for the first time. A settings screen with 4 UITextFields and a UIPicker. This settings view can be accessed later using a button from the mainscreen. Somebody please suggest some ideas

Thanks

Wizard Of iOS
  • 2,389
  • 2
  • 18
  • 22

1 Answers1

2

Use the NSUserDefaults and set a BOOL or a NSDate to indicate that you app has been used for the first time.

[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"firstUse"]

Warren Burton
  • 17,451
  • 3
  • 53
  • 73