How do you implement a fetched property in Xcode 4?
Here is an example of two entities, a book and a page:
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;