mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-07 17:47:46 +08:00
19 lines
384 B
Objective-C
19 lines
384 B
Objective-C
//
|
|
// RKMappingFormatJSONParser.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 3/4/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKMappingFormatJSONParser.h"
|
|
#import "JSON.h"
|
|
|
|
@implementation RKMappingFormatJSONParser
|
|
|
|
- (NSDictionary*)dictionaryFromString:(NSString*)string {
|
|
return [[[[SBJSON alloc] init] autorelease] objectWithString:string];
|
|
}
|
|
|
|
@end
|