Reputation: 13713
I have developed an application for the iPhone devices and I want to also write it for iPad devices. I do NOT want to create a Universal App. I want each type to be treated as a different app in the appstore.
I am using xcode 4
Can anyone guide me to a good doc/tutorial as I didn't find much on this issue.
should I create a new project ? Can I use the existing code ?
Thanks
Upvotes: 0
Views: 175
Reputation: 57168
You just need to create a new target in your existing project and change its target device.
I suggest ensuring that all your build settings (except for target device) are set at the project, not target, level. You'll have to ensure that you include all resources and code in both targets.
Upvotes: 1