TCJSONKit 0.0.3

TCJSONKit 0.0.3

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2017

Maintained by tauCross.



TCJSONKit 0.0.3

  • By
  • tauCross

Podfile

platform :ios, '7.0'
pod "TCJSONKit"

Usage

#import <TCJSONKit.h>

...
...
...

NSString *string = @"{\"number\":0}";
NSLog(@"%@", [string JSONObject]);
    
NSDictionary *dict = @{@"number" : @0};
NSLog(@"%@", [dict JSONString]);
    
id array = @[@0];
NSLog(@"%@", [array JSONString]);