A method identified as deprecated has been superseded and may become unsupported in the future.
Returns a property list object from a given location in a given serialized representation of a property list. (Deprecated in Mac OS X v10.2.)
+ (id)deserializePropertyListFromData:(NSData *)data atCursor:(unsigned *)cursor mutableContainers:(BOOL)mutable
A serialized representation of a property list.
If YES
and the property list object is a dictionary or an array, the recomposed object is made mutable
A property list object corresponding to the representation in data at the location cursor. Returns nil
if the property list object is not valid for property lists.
NSSerialization.h
Returns a property list object from given serialized data, optionally making the list elements mutable. (Deprecated in Mac OS X v10.2.)
+ (id)deserializePropertyListFromData:(NSData *)serialization mutableContainers:(BOOL)mutable
A serialized representation of a property list.
If YES
and the property list object is a dictionary or an array, the recomposed object is made mutable.
A property list object corresponding to the representation in serialization, or nil
if serialization does not represent a property list.
NSSerialization.h
Returns a property list from a given location in a given serialized representation of a property list. (Deprecated in Mac OS X v10.2.)
+ (id)deserializePropertyListLazilyFromData:(NSData *)data atCursor:(unsigned *)cursor length:(unsigned)length mutableContainers:(BOOL)mutable
A serialized representation of a property list.
The cursor location.
The number of bytes to read.
If YES
and the object is a dictionary or an array, the recomposed object is made mutable.
A property list from data at location cursor, or nil
if data does not 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 accessed.
NSSerialization.h
© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-05-23)