FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
NSData.h
Go to the documentation of this file.
1 //
2 // NSData.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 10. 10. 17..
6 // Copyright 2010 youknowone.org All rights reserved.
7 //
8 
15 #import <Foundation/Foundation.h>
16 
21 
32 - (id)propertyListObjectUsingFormat:(NSPropertyListFormat *)format error:(NSError **)error;
33 
34 
41 - (NSString *)hexadecimalString;
46 - (instancetype)initWithHexadecimalString:(NSString *)hexadecimal;
51 + (instancetype)dataWithHexadecimalString:(NSString *)hexadecimal;
52 
53 @end
54 
55 
57 
68 - (NSString *)base64String __deprecated;
69 
78 - (instancetype)initWithBase64String:(NSString *)base64 __deprecated;
87 + (instancetype)dataWithBase64String:(NSString *)base64 __deprecated;
88 
89 @end
Definition: NSData.h:56
NSString * __deprecated()
Serialized string in base64 format.
NSData serialization/deserialization extension collection.
Definition: NSData.h:20
NSString * hexadecimalString()
Serialized string in hexadecimal format.