I went to the NSManagetObject header file and it seems that Apple uses it that way.
// state - methods can be used through KVC, for example for enabling/disabling widgets based on the state of the object @property (nonatomic, getter=isInserted, readonly) BOOL inserted; @property (nonatomic, getter=isUpdated, readonly) BOOL updated; @property (nonatomic, getter=isDeleted, readonly) BOOL deleted;
Try just changing the attribute name of your entity, and I assume that it will not be an easy transfer of Core Data. Be sure to check this before submitting the code.
I donโt know if Apple did this, but I didnโt receive a warning in iOS 7. I hope this is a signal from Apple letting us know that they fix all problems with the main data :)
source share