iphone - CoreDataGeneratedAccessors not generating automatic selectors -
I'm currently working on an app that uses core data, I try to specify CoreDataGeneratedAccessors in intervals , But the accessories like setName did not automatically get generated.
Is this something wrong in my XCODE configuartion?
Thanks, Jith.
You are not likely to be directed to the @ dynamic
for the property in the implementation (.m) file. You need to do something like this:
@implementationMyManagedObject @dynamic propertyName;
... to get access to managed items
Comments
Post a Comment