Sharing data between multiple view controllers with Core Data?

No, I don't think that will work. The way you would normally do this, or at least the way I do it, is to pass your ManagedObjectContext from your AppDelegate to your first SpecialViewController and from there pass it to each successive SpecialViewController. Make sure SpecialViewController has a property defined as property (nonatomic, retain) NSManagedObjectContext *managedObjectContext and then set it as the ManagedObjectContext of whatever class you are in: specialViewController.

ManagedObjectContext = self. ManagedObjectContext for each new SpecialViewController you create. Then you can save it at the end with.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions