Sharing classes between projects in xcode/objective-c
- by Allyn
Hey folks,
I've got a client<=server app I'm building for Mac OS X, using Objective-c/Cocoa and xCode. I've created a different project for both the apps I have, and I'm wondering the best way to share classes between them. There are several classes I've made that would be useful to both. This far I've been copying them around, but I feel like this isn't the best solution.
How do I share classes effectively?
Should I redo it as 1 project and just have two build targets? How do I do this?
Any other info?
Thanks.