When using NSCoder and NSKeyedArchiver, I understand the data is stored in binary format. Therefore, what is the most appropriate file extension for a storage file? Many tutorials use .plist, but I believe this should be text property lists ~ key / value pairs.

link|improve this question

70% accept rate
1  
Plist data (including such data contained in a .plist file) does not have to be a dictionary and can be in any of the three plist encoding formats. Anything that decodes plists should be able to handle any of the three formats (as NSPropertyListSerialization is), and any application that reads plists should at least check that it has the right kind of root object. – Peter Hosey Jan 16 at 22:18
feedback

1 Answer

You would typically use a custom extension.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.