Question title says it all. 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?
|
feedback
|
|
You would have to update both applications, as they are bundled into one single binary. However, using conditional coding (e.g. 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. | |||
|
feedback
|
|
Since iPad runs iOS3.2, your code has to handle both.
Though you have to be careful about using 4.0 specific APIs, loading the classes with tricks like My example could using more robust version checking too, may parsing the string to test if the major version is "4" or "3", for instance. | |||
|
feedback
|