Xcode 4 Core Data: How to use fetched property created in Data Model editor Xcode 4 Core Data: How to use fetched property created in Data Model editor ios ios

Xcode 4 Core Data: How to use fetched property created in Data Model editor


From what I've read you need to add fetched properties to the generated class yourself using the @dynamic keyword

// In your header@property (nonatomic, retain) NSArray *fetchLastPage;// In your class@dynamic fetchLastPage;