Inherits From:
NSObject
Conforms To:
NSObject (NSObject)
Declared In:
Foundation/NSSerialization.h
deserializePropertyListFromData:(NSData *)dataatCursor:(unsigned *)cursormutableContainers:(BOOL)mutable
Returns a property list object corresponding to the abstract representation in data at the location cursor. If mutable is YES and the object is a dictionary or an array, the re-composed object is made mutable. Returns nil if the object is not a valid one for property lists.
deserializePropertyListFromData:(NSData *)serialization mutableContainers:(BOOL)mutable
Returns a property list object corresponding to the abstract representation in serialization or nil if serialization doesn't represent a property list. If mutable is YES and the object is a dictionary or an array, the re-composed object is made mutable.
deserializePropertyListLazilyFromData:(NSData *)dataatCursor:(unsigned *)cursorlength:(unsigned)lengthmutableContainers:(BOOL)mutable
Returns a property list from data at location cursor or nil if data doesn't represent a property list. The deserialization proceeds lazily. That is, if the data at cursor has a length greater than length, a proxy is substituted for the actual property list as long as the constituent objects of that property list are not being accessed. If mutable is YES and the object is a dictionary or an array, the re-composed object is made mutable.