iOS deployment target

前端 未结 2 1037
刺人心
刺人心 2020-12-03 10:26

IF I set the deployment target for my app to iOS 4.2 when submitting to app store, will users with iOS 3.2 (or anything below 4.2) be able to download and install the app an

相关标签:
2条回答
  • 2020-12-03 11:06

    They won't be able to install and run the app (until they upgrade the OS on their device to that of the Deployment Target or above). But they might be able to buy and download the app using iTunes on their Mac or PC.

    0 讨论(0)
  • 2020-12-03 11:08

    No, that's exactly what deployment version is about.

    Best practice is to build against latest SDK version, with deployment version as low as possible. But that requires the discipline to do runtime checks and fallback implementations whenever using a API that wasn't there yet in the deployment version.

    0 讨论(0)
提交回复
热议问题