I’ve been searching around for an answer for this for a while and have yet to find an answer. I already have a Mac app as an Xcode project and that is working great. Now I want to make an iOS version of the app. What would you recommend as the best way to do this? There are several Cocoa classes that will be shared between the two versions as well as some resources files (images, strings). It seems like the best way to do this would be to have two separate Xcode projects and add them as sub-projects, but I can’t seem to figure that out.
Thanks for any help.
P.S. I’m using Xcode 4.x
So what I ended up doing, which seems to work, is to just have two completely separate projects and keep the shared files in some folder on my computer. Then add the shared files to each project and not select the copy items to destination folder option. This way I can edit the files in one project and the changes will appear in the other project.