FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
NSJSONSerialization.h
Go to the documentation of this file.
1 //
2 // NSJSONSerialization.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 12. 11. 4..
6 // Copyright (c) 2012 youknowone.org. All rights reserved.
7 //
8 
9 
16 #if __MAC_OS_X_VERSION_MAX_ALLOWED >= 1070 || __IPHONE_OS_VERSION_MAX_ALLOWED >= 50000
17 
23 
24 + (id)JSONObjectWithString:(NSString *)string options:(NSJSONReadingOptions)opt error:(NSError **)error;
25 + (NSString *)stringWithJSONObject:(id)obj options:(NSJSONWritingOptions)opt error:(NSError **)error;
26 + (id)JSONObjectWithURLRequest:(NSURLRequest *)URLRequest options:(NSJSONReadingOptions)opt error:(NSError **)error;
27 + (id)JSONObjectWithURL:(NSURL *)URL options:(NSJSONReadingOptions)opt error:(NSError **)error;
28 
29 @end
30 
31 #endif
NSJSONSerialization shortcuts
Definition: NSJSONSerialization.h:22