TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Sep 2017 |
Maintained by tauCross.
platform :ios, '7.0'
pod "TCJSONKit"
#import <TCJSONKit.h>
...
...
...
NSString *string = @"{\"number\":0}";
NSLog(@"%@", [string JSONObject]);
NSDictionary *dict = @{@"number" : @0};
NSLog(@"%@", [dict JSONString]);
id array = @[@0];
NSLog(@"%@", [array JSONString]);