I am using core data(from the CoreDataBooks sample code) to manage people in my app(Using a tableview). When the user adds a person in the tableview in the flipside(Utility Application), I want the name to appear in the label on the MainViewController. Also, I would like to have the different people switchable with a Page Control/Swipe(I would swipe to switch between the people in the front).
How can this be completed?
My entity is named child.
Can you elaborate on what issues you have been running into? You mention starting from the CoreData Books sample, but you don't indicate what problems, if any, you are having translating it into your own app.
__________________ Recall It!Tag your notes. Tag your photos. Tag your thoughts. Tag your life.
Can you elaborate on what issues you have been running into? You mention starting from the CoreData Books sample, but you don't indicate what problems, if any, you are having translating it into your own app.
Okay, I have the coreDataBooks sample Tableview setup, but now in a different view, i would like a label to display the attribute: name.
Still not really clear on what you are trying to do, or what is not working.
If your second view is just displaying the data for a single record (kinda sounds that way), then just pass in the NSManagedObject from the table cell that pushed the view.
__________________ Recall It!Tag your notes. Tag your photos. Tag your thoughts. Tag your life.
That is what I want to do, but a tableview cell does not push to the new view, there is a done button, and the user needs to swipe(Page Control) to switch between the records.