Hi
I am building an iPhone app that has some default data inside it via a property list. This data is the source for my Model. What is the best way to manage this data so the user can read (and in a couple of cases write) data from this plist?
I currently am subclassing NSObject and mapping the plist data to properties in that object, with methods to read/write data to the object. I have read about the NSCoding protocol and NSCoder but am not sure how to implement this in my custom class.
Any help will be appreciated.
Thanks