I’ve made a universal iPhone/iPad app (transitioned from iPhone only), but in a future version, I’m going to switch heavily to iOS 4-only features.
For the next update of my app, can I update only the iPhone version?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You would have to update both applications, as they are bundled into one single binary. However, using conditional coding (e.g.
if !(UIUserInterfaceIdiom() == UIUserInterfaceIdiomPad) {– note that I always check for an iPhone/iPod Touch this way as on OS 3.1.3 or lower, it will return nothing), you can make it so that only the iPad version is different.As for reversing making it Universal – go into your project and target settings, and change the ‘Targeted Device Entry’ to either iPhone or iPad. The option to upgrade your target should appear again.