Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 959689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T01:03:59+00:00 2026-05-16T01:03:59+00:00

I have a problem with Core Data which has left me at the end

  • 0

I have a problem with Core Data which has left me at the end of my tether. So I was wondering if any of you wonderful people could help.

Basically, I have two entities in a Core Data project. These are:

Author {authorName, dateOfBirth}
Book {bookName, pages}

There is a one-to-many relationship from author to books called ‘authors’, and an inverse relationship called ‘books’. I have exported the subclasses of these entities, and created my fetch controller. Do I now have to define the relationship programatically?

A list of authors is currently displayed in my table view. At the moment, I can only display a list of 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? I am presuming I would use an NSPredicate, the logic I have for that so far is:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ANY authors.bookName LIKE[cd] %@", authorName];

… but I am pretty sure that is incorrect.

I have been crawling the web for hours for an answer and remain confused. So any help would be greatly appreciated.

Many thanks 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T01:04:00+00:00Added an answer on May 16, 2026 at 1:04 am

    It’s likely that you have something like the following:

    @interface AuthorListController : UITableViewController {
        UITableView *table;
        NSArray *authors; // array of NSManagedObjects
    }
    
    @property (nonatomic, retain) IBOutlet UITableView *table;
    @property (nonatomic, retain) NSArray *authors;
    

    And in your implementation you have:

    -(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath {
        NSManagedObject *author = [authors objectAtIndex:indexPath.row];
        // create and show your book-level view here
    }
    

    Now that you’ve got the selected author object, you can get the books (assuming you’ve set up the one-to-many relationship in the Data Modeler) directly:

    NSSet *books = author.books;
    

    But if you didn’t have the author object loaded, for whatever reason, you might build a new search and use the books->authors relations in your predicate:

    NSManagedObjectContext *objectContext = self.managedObjectContext;
    NSEntityDescription *entity = [NSEntity entityForName:@"Books" inManagedObjectContext:objectContext];
    NSFetchRequest *fetch = [[NSFetchRequest alloc] init];
    [fetch setEntity:entity];
    
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"author.name == %@", authorName];
    [fetch setPredicate:predicate];
    
    // ... create your error object and execute the fetch, etc
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.