I'm new to IPhone development and I'm currently trying my hand at Core Data. I have a couple of entities that I've defined in my model. In one entity I have a fetched property. When I generate the Objective-C source files from my model, my entity that I defined with the fetched property does not have a property defined for the fetched property. Why? How do I access the fetched property?
More details in response to Tim:
- I have an entity named
Library
and another entity namedBook
. Library
has a one to many relationship toBook
(Book
also has an inverse relationship).Book
has a BOOL property calledisCheckedOut
.- I defined a fetched property on
Library
calledfetchAllCheckedOutBooks
. The destination entity isBook
and the predicate isisCheckedOut == 1
.