mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-05-10 05:36:30 +08:00
23 lines
346 B
Objective-C
23 lines
346 B
Objective-C
//
|
|
// RKMappingFormatJSONParser+YAJL.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 9/28/10.
|
|
//
|
|
//
|
|
|
|
#import "RKJSONParser.h"
|
|
#import "YAJL.h"
|
|
|
|
@implementation RKJSONParser
|
|
|
|
- (NSDictionary*)objectFromString:(NSString*)string {
|
|
return [string yajl_JSON];
|
|
}
|
|
|
|
- (NSString*)stringFromObject:(id)object {
|
|
return [object yajl_JSONString];
|
|
}
|
|
|
|
@end
|