mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-01 22:42:51 +08:00
19 lines
455 B
Objective-C
19 lines
455 B
Objective-C
//
|
|
// RKNSJSONSerialization.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 8/31/12.
|
|
// Copyright (c) 2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKSerialization.h"
|
|
|
|
/**
|
|
An RKSerialization implementation providing serialization and
|
|
deserialization of the JSON format using the Apple provided
|
|
NSJSONSerialization class. This is the default JSON implementation
|
|
for RestKit.
|
|
*/
|
|
@interface RKNSJSONSerialization : NSObject <RKSerialization>
|
|
@end
|