NSSerializer |
Mac OS X 10.0 |
This class converts a collection of
property-list objects
(NSDictionary, NSArray,
NSString, and NSData) in memory
into a form that can be saved to a file, for example. This class has
been deprecated, and clients should instead use the class
NSPropertyListSerialization.
@interface NSSerializer : NSObject
|
// Class Methods |
+ (NSData *)serializePropertyList:(id)aPropertyList;
|
+ (void)serializePropertyList:(id)aPropertyList intoData:(NSMutableData *)mdata;
|
|