Using Xcode (to develop on iOS) I want to create a second project that it is the same as a first project but some classes are differents.
Exactly, I'm creating an IPhone App and I want to offer a free version and a premium version. Actually, the code of the projects are identical but changes some classes.
The problem is I don't want support two projects. If I modify a class, then I have to modify the same change on the other project. It is very redundant.
Besides, the project are pushed to a remote GIT respository.
And one last note, an iOS App is identify using an ID associated with the project.
So, I need two differents projects?
Which is the best solution to create two iOS App projects in Xcode sharing the classes, but changing two o three classes?
Thanks