mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-05-11 18:11:33 +08:00
23 lines
397 B
Objective-C
23 lines
397 B
Objective-C
//
|
|
// RKMappingFormatJSONParser+YAJL.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 9/28/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#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
|