views:

382

answers:

2

It appears that each app has access to its own config settings, which could be kept after app be shutdown. I am wondering whether one app's config setting could be accessed from other app.

Should I save sensitive data like password to the app config?

Is there some better way?

+10  A: 

The Keychain is where passwords or other sensitive information should be saved.

Chris Hanson
Just be aware that the Keychain is encrypted using Triple-DES.
bbrown
+2  A: 

Buzz Andersen has code that will get and set Keychain passwords correctly on both the simulator and on the iPhone: SFHFKeychainUtils.

Nathan Kinsinger