Hello,
Supposing you had a Core Data relationship such as:
Book ---->> Chapter ---->> Page
Given a Book
object called aBook
, aBook.chapters
will return the book's chapters. But how do you get a book's pages (i.e. book.pages
)? And how would you get the pages sorted by a pageNumber
property?
Thank you!