mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-17 12:20:20 +08:00
19 lines
317 B
Objective-C
19 lines
317 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];
|
|
}
|
|
|
|
@end
|