CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Jul 2016 |
Maintained by Bell.
parse and format JSON for ios, based on NSJSONSerialization and run time
pod 'GreedJSON'
#import "GreedJSON.h"// NSArray to NSString
- (NSString*)gr_JSONString;
// NSArray to NSData
- (NSData*)gr_JSONData;// NSData to NSDictionary or NSArray
- (__kindof NSObject*)gr_object// NSDictionary to NSString
- (NSString*)gr_JSONString;
// NSDictionary to NSData
- (NSData*)gr_JSONData;// NSString to NSDictionary or NSArray
- (__kindof NSObject*)gr_object// model to NSDictionary
- (__kindof NSObject *)gr_dictionary;
// NSDictionary to model
+ (id)gr_objectFromDictionary:(NSDictionary*)dictionary