iOS Compatibility on different iOS Operation Systems

后端 未结 4 413
-上瘾入骨i
-上瘾入骨i 2021-01-21 09:35

I wanted to ask how compatibility on different iOS operation systems works in iOS. For example If I develop an app on Xcode 9.2 and Swift 4 for i

4条回答
  •  执念已碎
    2021-01-21 09:52

    Very simple solution:

    Set deployment target as 9.0 in your build target general settings. iOS will automatically handle support from 9.0 onwards for a build (your app).

    Your app/build will be allowed to use/import frameworks and other libraries, compatible to minimum deployment target, only.

    enter image description here

    More detail about App Deployment Target from Apple.

    enter image description here

提交回复
热议问题