Hello,
I have two entities in a Core Data project. These are:
Author {authorName, dateOfBirth}
Book {bookName, pages}
A list of authors is currently displayed in my table view. I would like a list of a a particular authors books to be displayed when I tap on that particular author in my table view.
At the moment, I can only display ALL the books in my Core Data project when I tap on an author. How would I go about accessing a list of books from a particular author?
These entities are defined in my Core Data model through a one to many relationship from author to book called 'books'.
Any help would be greatly appreciated
Many thanks,
Martyn.