boochan224
boochan224

Reputation: 381

can't add the CoreData.framework to my exisiting project

I'm new to stackoverflow. Here is my problem...I just can't add CoreData.framework to my existing project. I cliced on the Frameworks group pressing the control button. The menu is supposed to show Add->Exisiting Framewokrs...right? , but no matter how I tried, the Add option didn't show on the menu. The menu shows: Open As New File New Project New Group New Group from selection Add Files to "xxxxxx"... Delete Source Control Project Navigator Help So, can someone tell me how I proceed from here...? Thank you...

Upvotes: 0

Views: 478

Answers (1)

daveoncode
daveoncode

Reputation: 19588

Assuming your are using xcode 4.2:

  • Select your application target
  • Select "Build Phases" tab
  • Under "link binary with libraries" click [+]
  • choose CoreData from the list
  • click add

Upvotes: 3

Related Questions