File tree Expand file tree Collapse file tree 3 files changed +0
-10
lines changed Expand file tree Collapse file tree 3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 174
174
+ (NSArray *)findAllSortedBy : (NSString *)sortTerm ascending : (BOOL )ascending inContext : (NSManagedObjectContext *)context ;
175
175
+ (NSArray *)findAllSortedBy : (NSString *)sortTerm ascending : (BOOL )ascending withPredicate : (NSPredicate *)searchTerm ;
176
176
+ (NSArray *)findAllSortedBy : (NSString *)sortTerm ascending : (BOOL )ascending withPredicate : (NSPredicate *)searchTerm inContext : (NSManagedObjectContext *)context ;
177
- + (NSFetchRequest *)requestAllSortedBy : (NSString *)sortTerm ascending : (BOOL )ascending withPredicate : (NSPredicate *)searchTerm inContext : (NSManagedObjectContext *)context ;
178
177
179
178
+ (NSArray *)findAllWithPredicate : (NSPredicate *)searchTerm ;
180
179
+ (NSArray *)findAllWithPredicate : (NSPredicate *)searchTerm inContext : (NSManagedObjectContext *)context ;
Original file line number Diff line number Diff line change @@ -444,8 +444,6 @@ typedef enum {
444
444
The mapResponseWith: family of methods have been deprecated by the support for object mapping selection
445
445
using resourcePath's
446
446
*/
447
- - (RKObjectLoader *)objectLoaderForObject : (id <NSObject >)object method : (RKRequestMethod)method delegate : (id <RKObjectLoaderDelegate>)delegate ;
448
- - (RKObjectLoader *)objectLoaderForObject : (id <NSObject >)object method : (RKRequestMethod)method delegate : (id <RKObjectLoaderDelegate>)delegate ;
449
447
- (void )getObject : (id <NSObject >)object mapResponseWith : (RKObjectMapping *)objectMapping delegate : (id <RKObjectLoaderDelegate>)delegate DEPRECATED_ATTRIBUTE;
450
448
- (void )postObject : (id <NSObject >)object mapResponseWith : (RKObjectMapping *)objectMapping delegate : (id <RKObjectLoaderDelegate>)delegate DEPRECATED_ATTRIBUTE;
451
449
- (void )putObject : (id <NSObject >)object mapResponseWith : (RKObjectMapping *)objectMapping delegate : (id <RKObjectLoaderDelegate>)delegate DEPRECATED_ATTRIBUTE;
Original file line number Diff line number Diff line change @@ -499,13 +499,6 @@ relationship. Relationships are processed using an object mapping as well.
499
499
*/
500
500
- (Class )classForProperty : (NSString *)propertyName ;
501
501
502
- /* *
503
- Returns an auto-released object that can be used to apply this object mapping
504
- given a set of mappable data. For transient objects, this generally returns an
505
- instance of the objectClass. For Core Data backed persistent objects, mappableData
506
- will be inspected to search for primary key data to lookup existing object instances.
507
- */
508
- - (id )mappableObjectForData : (id )mappableData ;
509
502
510
503
// Deprecations
511
504
+ (id )mappingForClass : (Class )objectClass withBlock : (void (^)(RKObjectMapping *))block DEPRECATED_ATTRIBUTE;
You can’t perform that action at this time.
0 commit comments