Building a list of favorites from Core Data

Posted by Jim on Stack Overflow See other posts from Stack Overflow or by Jim
Published on 2010-05-04T16:02:16Z Indexed on 2010/05/05 0:18 UTC
Read the original article Hit count: 572

Filed under:
|
|

I'm building an app with two tabs. The first tab has a main tableview that connects to a detail view of the row. The second tab will display a tableView based on the user adding content to it by tapping a button on the detail view.

My question is this. What is the correct design pattern to do this? Do I create a second ManagedObjectContext/ManagedObjectContextID then save that context to a new persistent store or can the MOC be saved to the existing store without affecting the original tableview?

I've looked at CoreData Recipes and CoreData Books and neither deal with multiple stores although books does deal with multiple MOC's. Any reference would be great.

© Stack Overflow or respective owner

Related posts about cocoa-touch

Related posts about core-data