I have created an app, let's call it A, and now I want to create a new app, let's call it B, where B is a superset of A -- that is, B has everything in A plus some more. But I still want to maintain A as well. I could simply make a copy of A and then start adding the 'B' functionality, but then I would have to make fixes to 'A' functionality in both places. Can I configure my Xcode project to have two different targets, A and B, where:
- A and B have different main nibs
- A and B have different plist.info files
- A and B have different names
etc..
any tips from those who have done this would be appreciated
- A and B have different main nibs
- A and B have different plist.info files
- A and B have different names
etc..
any tips from those who have done this would be appreciated