Reputation:
When I select my target in Xcode and run it on my iPad it overwrites the other target in the same Xcode project. Is there a way to have both targets on the device simultaneously?
Upvotes: 0
Views: 323
Reputation: 5935
Give them a different bundle ID in your info.plist. This will require different mobile provisioning files for each target. Most people have one target for debugging and development, and another for the production which strips out testing and debugging code.
Upvotes: 2