Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a login-screen in my iOS app. The username and password will be saved in the NSUserDefaults and be loaded into the login-screen again when you anter the app again (of course, NSUserDefaults are permenant).

Now, the user have the possibilty to disable the username/password-savement.

So the NSUserDefaults will be cleared then.

But IN my app I need this username/password for database querys for the user. So: Where to store data except the NSUserDefaults? (This place can / should be deleted when the user quit the app or logout).

share|improve this question
   
The user can only clear it by either resetting the device or removing the app. Am I missing something? – rightfold Aug 7 '11 at 10:18
And by the way, if the data should be deleted when the user quits the app, why don't just keep it in RAM? – rightfold Aug 7 '11 at 10:21
1  
You should seriously consider using Keychain for storing usernames and passwords instead of NSUserDefaults. – Filip Radelic Aug 7 '11 at 10:36

5 Answers

up vote 113 down vote accepted

You should always use Keychain to store usernames and passwords, and since it's stored securely and only accessible to your app, there is no need to delete it when app quits (if that was your concern).

Apple provides sample code that stores, reads and deletes keychain items and here is how to use the keychain wrapper class from that sample which greatly simplifies using Keychain.

Include Security.framework (in Xcode 3 right-click on frameworks folder and add existing framework. In Xcode 4 select your project, then select target, go to Build Phases tab and click + under Link Binary With Files) and KeychainItemWrapper .h & .m files into your project, #import the .h file wherever you need to use keychain and then create an instance of this class:

KeychainItemWrapper *keychainItem = [[KeychainItemWrapper alloc] initWithIdentifier:@"YourAppLogin" accessGroup:nil];

(YourAppLogin can be anything you chose to call your Keychain item and you can have multiple items if required)

Then you can set the username and password using:

[keychainItem setObject:@"password you are saving" forKey:kSecValueData];
[keychainItem setObject:@"username you are saving" forKey:kSecAttrAccount];

Get them using:

NSString *password = [keychainItem objectForKey:kSecValueData];
NSString *username = [keychainItem objectForKey:kSecAttrAccount];

Or delete them using:

[keychainItem resetKeychainItem];
share|improve this answer
I saw this code before, but it's very hard for me to read it and understand it, because I'm new to iOS developing. Saving the data to NSUserDefaults was very simple (3-4 lines of code). Can you help me a little bit more, with a few line of code to save username and password easily?! – Kovu Aug 7 '11 at 10:53
3  
I have updated my answer with the code and description. It's not nearly as hard as you thought. – Filip Radelic Aug 7 '11 at 11:18
Thx very much... – Kovu Aug 7 '11 at 11:27
11  
ATTANTION! Please add to your answer, that only "copy KeychainItemWrapper" isn't enough! I had the problem, that I can't build it afterwards! You must add the security.framework to your project that the KeychainItemWrapper will work! (HowTo: Select Project -> Select Target -> Select Tab "Build Phases" -> Select "Link Binary With Libaries" -> "+" -> add Security.Framework) – Kovu Aug 7 '11 at 17:20
2  
When using ARC, the compiler will yell at you for using the constants kSecValueData and kSecAttrAccount in Objective-C code, so be sure to cast them using (__bridge id), e.g., [keychainItem setObject:obj forKey:(__bridge id)kSecValueData]; – Joe Hankin Apr 6 at 23:13
show 3 more comments

If you need an ARC version of the wrapper here is the link https://gist.github.com/1170641 Thanks to

share|improve this answer

A very easy solution via Keychains:

https://github.com/soffes/sskeychain

It's a simple wrapper for the system Keychain. Just add the SSKeychain.h, SSKeychain.m, SSKeychainQuery.h and SSKeychainQuery.m files to your project and add the Security.framework to your target.

To save a password:

[SSKeychain setPassword:@"AnyPassword" forService:@"AnyService" account:@"AnyUser"]

To retrieve a password:

NSString *password = [SSKeychain passwordForService:@"AnyService" account:@"AnyUser"];

Where setPassword is what value you want saved and forService is what variable you want it saved under and account is for what user/object the password and any other info is for.

share|improve this answer
Do you know how to use sskeychain to synchronise apps with the same username and password? – TeamStar Mar 27 at 16:36
Thanks it works great. Much better than Apple's KeyChainWrapper ;) – Mr. 17 Apr 6 at 6:44

checkout this https://github.com/ldandersen/scifihifi-iphone/tree/master/security i tried first the apple's wrapper from the sample code but this is much simpler for me

share|improve this answer

You can save the data on a custom-class with a shared instance, or save it in the app's delegate.

share|improve this answer
1  
This is not appropriate for username/password data. The asked asks how to persist on disk, not store in memory. – Alfie Feb 28 at 23:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.