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 been using a plist to store data in my app. I have been able to write and read from the plist with no problem. I created this plist in XCode, adding the rows of numbers, dictionaries, and arrays myself. However, I would like to be able to reset the plist to the original state, and there must be an easier way to do this than writing a 0 or nil value to every entry in the plist. So what is the easiest way to reset the plist to its initial default state?

share|improve this question

1 Answer

up vote 4 down vote accepted

The simplest thing would be to delete the file using NSFileManager, like this:

[[NSFileManager defaultManager] removeFileAtPath:plistPath error:NULL];

Or if you don't want to do that, assuming the plist is a dictionary, just load the one from your application bundle and then overwrite the one in your documents, like this:

NSDictionary *originalPlist = [NSDictionary dictionaryWithContentsOfFile:bundleFile];
[originalPlist writeToFile:documentsFile atomically:YES];

Which will overwrite the saved file with the original file.

share|improve this answer
Thank you that was what I was looking for. I guess I just needed someone to explain it to me directly. – gurooj Jan 24 '12 at 7:02
Is it possible to delete a single entry from a plist file?Basically I am storing dates in my plist and I want that, as the date stored the plist expires, that date/entry should be deleted from the plist and the plist should get refreshed.How can I do that? – SRS Sep 21 '12 at 3:16
1  
You wouldn't delete it from the plist directly, you'd delete it from the dictionary by making a NSMutableDictionary using the mutableCopy method and then using the removeObjectForKey: method. Then just save the new dictionary over the top of the old plist. – Nick Lockwood Sep 21 '12 at 14:45
1  
The new syntax for removing the file is now: [[NSFileManager defaultManager] removeItemAtPath:plistPath error:nil]; – fiacobelli Sep 25 '12 at 15:20

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.