How can read the app settings when app is launched? For instance, for some gaming application, you set the sound, vibration setting in iPhone Settings app. So, how to read those settings when that gaming app is launched?
Asked
Active
Viewed 1,790 times
2 Answers
5
They are set as a 'Settings.bundle'; the iOS Application Programming guide shows how to implement this in your app.

Alan Zeino
- 4,406
- 2
- 23
- 30
0
In your appDelegate, in the didFinishLaunching function, retrieve your settings. See User Defaults Documentation, particularly the information about NSUserDefaults.

Rob
- 520
- 5
- 17