OC学习48:IPHONE_OS_VERSION_MIN_REQUIRED和IPHONE_OS_VERSION_MAX_ALLOWED

张建 lol

IPHONE_OS_VERSION_MIN_REQUIRED

当前app支持的最低版本, 即 Deployment Target

使用方法

1
2
3
4
5
6
// 如果iOS最低版本 < iOS9.0
#if __IPHONE_OS_VERSION_MIN_REQUIRED < 90000
// 代码1
#else
// 代码2
#endif
  • Post title:OC学习48:IPHONE_OS_VERSION_MIN_REQUIRED和IPHONE_OS_VERSION_MAX_ALLOWED
  • Post author:张建
  • Create time:2023-07-27 13:51:44
  • Post link:https://redefine.ohevan.com/2023/07/27/OC/OC学习48:IPHONE-OS-VERSION-MIN-REQUIRED和IPHONE-OS-VERSION-MAX-ALLOWED/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.
On this page
OC学习48:IPHONE_OS_VERSION_MIN_REQUIRED和IPHONE_OS_VERSION_MAX_ALLOWED