public
Description: A simple JSON parser in Objective-C
Homepage: http://groups.google.com/group/bsjsonadditions
Clone URL: git://github.com/blakeseely/bsjsonadditions.git
bsjsonadditions / BSJSONEncoder.h
100644 11 lines (8 sloc) 0.2 kb
1
2
3
4
5
6
7
8
9
10
11
//
// BSJSONEncoder.h
// BSJSONAdditions
//
 
#import <Foundation/Foundation.h>
 
@interface BSJSONEncoder : NSObject
+ (NSString *)jsonStringForValue:(id)value withIndentLevel:(NSInteger)level;
@end