Reputation: 3847
We are currently developing a universal application. However due to budget and timeline constants, the powers that be have decided to delay the deployment of the iPad version of the application.
How can we disable to iPad specific features of a universal application, without having to create a totally new project and migrate source and content files over. Ideally I would like the application to run the iPhone version of the application when installed on the iPad.
Many Thanks
Upvotes: 2
Views: 305
Reputation: 14154
I believe you can just change the drop down in the project summary from Universal to iPhone. Your classes will all remain, but will only target iPhone. So long as your Universal iPad code was done correctly, it shouldn't affect your iPhone build. When you are ready to pick back up for Universal builds, just flip it back, and all the code should be there from before. Good luck.
Upvotes: 2