Mrunal
Mrunal

Reputation: 14118

How to integrate Core Data to my existing application?

I have selected window based universal application and started coding for my app.

Now i got a requirement to use database and i found that CoreData is more preferable.

Is there any way to add Coredata to my current project, if yes how?

-Mrunal

Upvotes: 2

Views: 1057

Answers (1)

Tomer Even
Tomer Even

Reputation: 4980

See the Core Data Programming Guide or the documentation for more details that are open for developers only. This guide is very helpful and there are the CoreDataBooks and iPhoneCoreDataRecipes sample codes to get you started.

For a quick solution, create a new navigation controller project and tick the Core Data checkbox. Then copy the Core Data methods that you are missing. You can also use the Core Data code snippets that are available in the Xcode library.

Upvotes: 4

Related Questions