I have a multi-step form in an iOS application. To retain my data for the last step, I am using a plist. Is it the preferred way, or are there any better techniques to keep retained values?
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.
I would probably not use a plist. Store your form values in NSDictionary and pass the dictionary to the next view controller.