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.

Hello I have an app with a textfield that user have to enter his email. Is there any way to cache the emails that have been inserted to this textfield? I want an autocomplete of the email when the user enter the email. If this is not possible I want at least the app save the last email that the user has used. How to do that?

share|improve this question

3 Answers

up vote 1 down vote accepted

Use this to store the email value:

 [[NSUserDefaults standarduserdefaults] setValue:@"user@domain.com" forKey:@"Email"];

To Read it back use:

NSString *sEmail = [[NSUserDefaults standarduserdefaults] stringForKey:@"Email"];
share|improve this answer

You could save the data by using NSUserDefaults - save it when the user has finished entering the e-mail address, then restore it again when the view is loaded.

share|improve this answer

If you want to store large number of emails means you have to use the property list... In NSUserDefaults you have to store only the important values

Property list

share|improve this answer

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.