| 
    FoundationExtension
    
   FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection. 
   | 
 
NSData serialization/deserialization extension collection. More...
#import <NSData.h>
Instance Methods | |
Property list  | |
| (id) | - propertyListObjectUsingFormat:error: | 
| Deserialize property list data to object.  More... | |
Hexadecimal | |
| (NSString *) | - hexadecimalString | 
| Serialized string in hexadecimal format.  More... | |
| (instancetype) | - initWithHexadecimalString: | 
| Initialize with deserialized data from hexadecimal string.  More... | |
| (instancetype) | + dataWithHexadecimalString: | 
| Creates and returns deserialized data from hexadecimal string.  More... | |
NSData serialization/deserialization extension collection.
| + (instancetype) dataWithHexadecimalString: | (NSString *) | hexadecimal | 
Creates and returns deserialized data from hexadecimal string.
| - (NSString *) hexadecimalString | 
Serialized string in hexadecimal format.
| - (instancetype) initWithHexadecimalString: | (NSString *) | hexadecimal | 
Initialize with deserialized data from hexadecimal string.
| hexadecimal | Hexadecimal string. | 
| - (id) propertyListObjectUsingFormat: | (NSPropertyListFormat *) | format | |
| error: | (NSError **) | error | |
Deserialize property list data to object.
| format | A property list format. Possible values for format are described in 'NSPropertyListFormat'. | 
| error | If the method does not complete successfully, upon return contains an NSError object that describes the problem. |