Introduced new system for handling object cacheing of resourcePaths

This commit is contained in:
Blake Watters
2010-02-19 11:59:37 -05:00
parent 092bfe3775
commit a1b62cf014
5 changed files with 93 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
//
// OTManagedModel.m
// RKManagedModel.m
// RestKit
//
// Created by Blake Watters on 8/14/09.
@@ -69,6 +69,17 @@
return [self collectionWithPredicate:nil];
}
#pragma mark -
#pragma mark Object Cacheing
+ (NSArray*)objectsForResourcePath:(NSString*)resourcePath {
return nil;
}
+ (RKManagedModel*)objectForResourcePath:(NSString*)resourcePath {
return nil;
}
#pragma mark -
#pragma mark RKModelMappable