mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-08 09:47:24 +08:00
23 lines
393 B
Objective-C
23 lines
393 B
Objective-C
//
|
|
// RKJSONParser+JSONKit.m
|
|
// RestKit
|
|
//
|
|
// Created by Jeff Arena on 3/16/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKJSONParser.h"
|
|
#import "JSONKit.h"
|
|
|
|
@implementation RKJSONParser
|
|
|
|
- (NSDictionary*)objectFromString:(NSString*)string {
|
|
return [string objectFromJSONString];
|
|
}
|
|
|
|
- (NSString*)stringFromObject:(id)object {
|
|
return [object JSONString];
|
|
}
|
|
|
|
@end
|