- 方法一:
//值为 1
[[[[UIDevice currentDevice] systemVersion] substringToIndex:1] integerValue]
- 方法二:
//值为10.000000
[[UIDevice currentDevice] systemVersion].floatValue,
- 方法三:
//值为10.0
[[UIDevice currentDevice] systemVersion]
常用的是方法二和方法三
参考文章:
【iOS 10 判断系统版本方式更新】