I’ve started a new iPhone app that needs to remember a single, 40-char string. That’s it. I’ve hooked into Core Data, and am reading about it now, but it really seems like overkill. Is there an easier way to do something so simple?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
NSUserDefaults would probably be the easiest way
This will persistence between sessions.
Edit: This is assuming of course that the string is not constant for everyone using the program. If it is you can just hard code it. This is for if every instance of the app needs a different string, but you want the string saved between runs of the app.