-2

i have developed an ios application (not finished), and know i would like to migrate my project to use core Data, it's this possible ? if yes How ?

Lorenzo B
  • 33,006
  • 23
  • 110
  • 185
samir
  • 4,316
  • 6
  • 44
  • 75
  • Look for example here: http://stackoverflow.com/questions/5959720/how-to-add-core-data-to-my-exisiting-ios-project-in-xcode – Ondrej Peterka Apr 24 '12 at 14:13
  • [This might help](http://wiresareobsolete.com/wordpress/2009/12/adding-core-data-existing-iphone-projects/) – Bala Apr 24 '12 at 14:41

1 Answers1

0

without giving any specifics it is difficult to be specific in an answer. What you need to do is to link to the binary of the CoreData Framework in your solution. You need to decide which storage you wish to use (sqlite etc). Is the information to be persisted user preferences? Is is a mini database? Is is one flat file store? At the end of the day you'll need to do some reading based on which of the types of backing store you choose.

Hope this helps as a starting point.

stan4th
  • 740
  • 1
  • 6
  • 19