I am trying to work on an iPhone application.
I am wondering if it is possible to use a structure that I have created and defined in the plist (either 开发者_C百科using the plist editor/etc) and store user's input using that structure into the iPhone memory. Is it possible? If so, how do I go about doing that?
Thank you in advance!
You can read plists, if that's what you mean?
NSDictionary *plist = [[[NSString alloc] initWithContentsOfFile:@"yourPlistFile"] propertyList];
精彩评论