Need some advice into: Can NSFetchedResultController do this?
UITableView:
[section name] <= {entity: Section, value: title}
[cell title] <= {entity: Cell, value: title}
Model:
[entity: Section, properties: title] <->> [entity: Cell, properties: title, imgPath]
Trouble:
Count of sections, and their titles is working, can’t fetch object from relationship to Cell
Thanks for help…
That should be possible. In fact I think that you can use the “standard” table view data source methods and fetched results controller delegate methods if you create the FRC with the
sectionNameKeyPathset to “section.title”:(I have assumed that you have an inverse relationship
sectionfrom the Cell entity to the Section entity.)