0

I am trying to import one of my xcode projects into another, and I was just wondering if there were some best practices for this task, or if anyone has any advice how to make this happen?

Thanks.

James Dunay
  • 2,714
  • 8
  • 41
  • 66

2 Answers2

2

Not sure exactly what you mean by import.

If you want to do a framework then you'll want this.

Framework Docs

If you want to do a shared library then you'll want this.

Shared Libs

logancautrell
  • 8,762
  • 3
  • 39
  • 50
  • hmmm, maybe this is beyond my techniqueal knowledge, but what I would really just like to do is move all of my classes and xibs into a different project. Is that possible? – James Dunay Oct 21 '11 at 16:24
  • Ah, ya you can just open them in the finder from the 'old project' and drag and drop them into Xcode on the 'new project'. Just make sure that you select the copy checkbox. – logancautrell Oct 21 '11 at 16:27
  • But if you want to create a new project from all classes and sibs ... Try the answer to this SO question: http://stackoverflow.com/questions/7447337/what-is-the-right-way-to-save-as-an-ipad-project/7448010#7448010 – user523234 Oct 21 '11 at 16:54
0

Just click on .xcodeproj file and it will be automatically opened in whatever version of xcode installed in your system and if the project was created in an older version just click on "Modernise Project" which you can find at the bottom of your xcode and xcode will take care of the rest.

Varundroid
  • 9,135
  • 14
  • 63
  • 93