mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 09:31:32 +08:00
25 lines
636 B
Objective-C
25 lines
636 B
Objective-C
//
|
|
// RKManagedObjectLoader.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 2/13/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKObjectLoader.h"
|
|
#import "RKManagedObjectStore.h"
|
|
|
|
@interface RKManagedObjectLoader : RKObjectLoader {
|
|
NSManagedObjectID* _targetObjectID;
|
|
RKManagedObjectStore* _managedObjectStore;
|
|
}
|
|
|
|
/*
|
|
* In cases where CoreData is used for local object storage/caching, a reference to
|
|
* the managedObjectStore for use in retrieving locally cached objects using the store's
|
|
* managedObjectCache property.
|
|
*/
|
|
@property (nonatomic, retain) RKManagedObjectStore* managedObjectStore;
|
|
|
|
@end
|