mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-05-13 11:58:17 +08:00
Convert RestKit to ARC
This commit is contained in:
@@ -10,14 +10,10 @@
|
||||
#import "RKObjectMapping.h"
|
||||
|
||||
|
||||
@interface RKDynamicMappingMatcher : NSObject {
|
||||
NSString *_keyPath;
|
||||
id _value;
|
||||
BOOL (^_isMatchForDataBlock)(id data);
|
||||
}
|
||||
@interface RKDynamicMappingMatcher : NSObject
|
||||
|
||||
@property (nonatomic, readonly) RKObjectMapping *objectMapping;
|
||||
@property (nonatomic, readonly) NSString *primaryKeyAttribute;
|
||||
@property (nonatomic, strong, readonly) RKObjectMapping *objectMapping;
|
||||
@property (nonatomic, copy, readonly) NSString *primaryKeyAttribute;
|
||||
|
||||
- (id)initWithKey:(NSString *)key value:(id)value objectMapping:(RKObjectMapping *)objectMapping;
|
||||
- (id)initWithKey:(NSString *)key value:(id)value primaryKeyAttribute:(NSString *)primaryKeyAttribute;
|
||||
|
||||
Reference in New Issue
Block a user