views:

317

answers:

3
+1  Q: 

iPhone Settings

Is there any way to access the iPhone/iPod touch settings programatically ?

Thanks. Biranchi

A: 

Could you be more specific about what settings you would like to be able to access. There are API's to get at some information, but general access to the device is prohibited by the sandbox your applications run in.

Kevin
+2  A: 

Most of the user settings can be accessed by reading the property lists stored at /User/Library/Preferences/. The Emoji enabler applications all worked by modifying a settings plist in this folder.

Be careful not to delete any settings or leave them in an inconsistent state

rpetrich
Could you elaborate on how to do this programmatically in an iPhone app? I am trying to read this plist in code. Thanks in advance!
JWD