So far I have seen only CoreData using @dynamic property accessor definitions. What other ways are there for a property to get dynamic accessors in Cocoa object so that they can be marked as @dynamic?
So far I have seen only CoreData using @dynamic property accessor definitions. What other
Share
By default, all declared properties are @dynamic, however you can declare them as @synthesize.
@dynamic means, that you will provide getter and setter implementation in your class, that may be linked to no any i-var.