Samond Classes Library 1.2.1-RELEASE build 181
|
Standard protocol NSCoding extention protocol. More...
#import <SCCoding.h>
Serialized Files Support | |
(instancetype) | - initWithContentsOfSerializedFile: |
(BOOL) | - writeContentsToSerializedFile: |
(NSString *) | - className |
Standard protocol NSCoding extention protocol.
Extends functionality of the standard protocol NSCoding by adding advanced methods for direct access to the serialized files.
- (NSString *) className |
Returns the name of the receiving instance class.
- (instancetype) initWithContentsOfSerializedFile: | (NSString *) | path |
Initializes a class instance by using the content of the serialized file with the specified path.
path | - the path to the source serialized file |
Reimplemented in NSObject(SCObject).
- (BOOL) writeContentsToSerializedFile: | (NSString *) | path |
Writes the receiving class instance into the serialized file with the specified path.
path | - the path to the serialized file |
Reimplemented in NSObject(SCObject).