views:

61

answers:

1

E.g. what "Use Core Data for storage" checkbox option means when creating new Window or Navigation based project?

How to add Core Data for Tab Bar Application?

How to initialize managedObjectModel, managedObjectContext, persistentStoreCoordinator?

+1  A: 

Easiest way is to create a temp project with core data turned on and then copy the methods from the AppDelegate to your existing project. In addition you will need to create a model file and import the CoreData framework.

Those are the only differences that checkmark creates.

Marcus S. Zarra
You will also have to add CoreData.framework to the linked frameworks for the project...
Barry Wark