Make entity property readwrite, so it can be changed after init.

This commit is contained in:
Dmitry Shevchenko
2012-10-01 16:28:22 -05:00
parent 991a6fd733
commit 628f7323aa
2 changed files with 1 additions and 2 deletions

View File

@@ -60,7 +60,7 @@
/**
The Core Data entity description used for this object mapping
*/
@property (nonatomic, strong, readonly) NSEntityDescription *entity;
@property (nonatomic, strong) NSEntityDescription *entity;
/**
The name of the attribute on the destination entity that acts as the primary key for instances

View File

@@ -33,7 +33,6 @@
@interface RKEntityMapping ()
@property (nonatomic, weak, readwrite) Class objectClass;
@property (nonatomic, strong, readwrite) NSEntityDescription *entity;
@property (nonatomic, strong) NSMutableArray *mutableConnections;
@end