Is it possible to write apps that support iOS 3.x versions using Xcode 4? If so, how? And does Apple have any official recommendations on app backwards-compatibility?
|
To get your app successfully run in iOS 3.x device, follow these steps (Xcode 4.2):
|
|||||||||
|
|
Yes, you can develop apps that support previous iOS versions with the current iOS SDK. For official recommendations, see Apple's SDK Compatibility Guide. |
|||
|
|
|
The version of Xcode that you use isn't related to the version of iOS that your app can support. To choose the version of iOS that your app supports, simply change the iOS deployment target in your project settings. Then just be sure not to use any APIs from versions later than that. |
|||||
|
|
to be sure, you can use Xcode 4 for targeting iOS 3.x as a deployment target, but you will not be able to simulate your program on a iOS 3.x SDK simulator. So you are pretty on your own (i.e., if you use any iOS 4.x-only feature, you will not find out it until you test on a physical device). You need an older version of Xcode to debug against an older simulated SDK. |
|||
|
|

