Convert RestKit to ARC

This commit is contained in:
Blake Watters
2012-08-28 17:34:58 -04:00
parent 274478448d
commit ce6b0829e4
81 changed files with 2615 additions and 3128 deletions

View File

@@ -30,10 +30,10 @@
NSString * const RKObjectMappingNestingAttributeKeyName = @"<RK_NESTING_ATTRIBUTE>";
@interface RKObjectMapping ()
@property (nonatomic, assign, readwrite) Class objectClass;
@property (nonatomic, weak, readwrite) Class objectClass;
@property (nonatomic, strong) NSMutableArray *mutablePropertyMappings;
@property (nonatomic, readonly) NSArray *mappedKeyPaths;
@property (weak, nonatomic, readonly) NSArray *mappedKeyPaths;
@end
@implementation RKObjectMapping