TCJSONKit 0.0.3

TCJSONKit 0.0.3

测试已测试
语言语言 Obj-CObjective C
许可 MIT
发布最后发布2017年9月

tauCross 维护。



TCJSONKit 0.0.3

  • tauCross

Podfile

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]);