I want to create a new list of custom properties in iphone applications. How to create and how to load in iphone class.
Load:
NSString *plistPath = [bundle pathForResource:kDefaultBookmarksPlistName ofType:@"plist"]; NSArray *defaultBookmarks = [[NSArray alloc] initWithContentsOfFile:plistPath];
To save see NSArray docs and see writeToFile
writeToFile