What is the easiest way to write content of a dictionary into a file. Sample code will be really helpful.
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.
Write to a plist file. That would be the easiest (to read back and write to)
Use the NSDictionary method writeToFile:atomically: to write to a plist and initWithContentsOfFile: to populate the dictionary with the plist’s contents.