I want to add core data to my app. should i need to add the core data methods in app delegate .h and .m files after adding the framework. please help
Asked
Active
Viewed 80 times
1 Answers
1
I prefer to create the core data stack later on in a view controller.
The examples and the templates create it for you in the AppDelegate. If you don't know how to do it, just create a dummy project with Core data and copy the boilerplate over.

Abizern
- 146,289
- 39
- 203
- 257
-
And don't forget to import the CoreData header in the appname.pch file :) – LJ Wilson Sep 24 '13 at 14:17