If the question is about reading and writing data from property lists, the relevant documentation is the [Property List Programming Guide].(https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/PropertyLists/ReadWritePlistData/ReadWritePlistData.html#//apple_ref/doc/uid/10000048i-CH8-SW3)
This extract should help you:
Using Core Foundation Functions to Read and Write Property-List Data
You have two major ways to write property-list data to the file system:
If the root object of the property list is an NSDictionary or NSArray object—which is almost always the case—you can invoke the writeToFile:atomically: or writeToURL:atomically: methods of those classes, passing in the root object. These methods save the graph of property-list objects as an XML property list before writing that out as a file or URL resource.
To read the property-list data back into your program, initialize an allocated collection object by calling the initWithContentsOfFile: and initWithContentsOfURL: methods or the corresponding class factory methods (for example, dictionaryWithContentsOfURL:).
To expand on this last point, consider this example. You have an XML property list whose root object is an NSArray object containing a number of NSDictionary objects. If you load that property list with this call:
NSArray * a = [NSArray arrayWithContentsOfFile:xmlFile];
a is an immutable array with immutable dictionaries in each element. Each key and each value in each dictionary are also immutable.
If you load the property list with this call:
NSMutableArray * ma = [NSMutableArray arrayWithContentsOfFile:xmlFile];
ma is a mutable array with immutable dictionaries in each element. Each key and each value in each dictionary are immutable.
If you need finer-grained control over the mutability of the objects in a property list, use the propertyListFromData:mutabilityOption:format:errorDescription: class method, whose second parameter permits you to specify the mutability of objects at various levels of the aggregate property list. You could specify that all objects are immutable (NSPropertyListImmutable), that only the container (array and dictionary) objects are mutable (NSPropertyListMutableContainers), or that all objects are mutable (NSPropertyListMutableContainersAndLeaves).
For example, you could write code like this:
NSMutableArray *dma = (NSMutableArray *)[NSPropertyListSerialization
propertyListFromData:plistData
mutabilityOption:NSPropertyListMutableContainersAndLeaves
format:&format
errorDescription:&error];
This call produces a mutable array with mutable dictionaries in each element. Each key and each value in each dictionary are themselves also mutable.