OC 和 Swift 中判断系统版本的几种方法
2017-05-26 本文已影响1761人
XiaoWhite
1、UIDevice方式
使用 [[UIDevice currentDevice] systemVersion]
来判断
(1)比较字符串
- (void)test1 {
NSString *systemVersion = [[UIDevice currentDevice] systemVersion
];
NSLog(@"%@"
,systemVersion);
// 以前比较的时候可以直接截取第一个字符进行比较,但在 iOS10 以后,如果截取第一个字符,只能得到1
// 所以最好的方法就是用整个字符串直接比较
if ([systemVersion compare:@"9.3.5" options:NSNumericSearch] == NSOrderedDescending) {
NSLog(@“大于 iOS 9.3.5");
}
}
(2)转化成 float 进行比较,只能比较前面的 majorVersion 和 minorVersion
- (void)test2 {
// 转化成 float 进行比较
NSString *systemVersion = [[UIDevice currentDevice] systemVersion];
// version float value = 10.300000
NSLog(@"version float value = %f",systemVersion.floatValue);
if (systemVersion.floatValue > 10.0) {
NSLog(@"当前系统版本大于 10.0");
} else {
NSLog(@"当前系统版本小于 10.0");
}
}
2、使用系统定义的 宏 来判断
- (void)test3 {
// NSFoundationVersionNumber 是一个宏,double 类型,代表当前系统的版本
// NSFoundationVersionNumber_iOS_9_3 是系统定义的宏,也是 double 类型,代表 iOS 9.3.x 的系统版本
double currentFoundationVersion = NSFoundationVersionNumber;
NSLog(@"currentFoundationNumber = %f",currentFoundationVersion);
if (currentFoundationVersion > NSFoundationVersionNumber_iOS_9_3) {
NSLog(@"大于 iOS 9.3.0");
}
}
系统中的宏定义与当前使用的SDK有关,我当前的使用的 Xcode 是 8.3.2
#if TARGET_OS_IPHONE
#define NSFoundationVersionNumber_iPhoneOS_2_0 678.24
#define NSFoundationVersionNumber_iPhoneOS_2_1 678.26
#define NSFoundationVersionNumber_iPhoneOS_2_2 678.29
#define NSFoundationVersionNumber_iPhoneOS_3_0 678.47
#define NSFoundationVersionNumber_iPhoneOS_3_1 678.51
#define NSFoundationVersionNumber_iPhoneOS_3_2 678.60
#define NSFoundationVersionNumber_iOS_4_0 751.32
#define NSFoundationVersionNumber_iOS_4_1 751.37
#define NSFoundationVersionNumber_iOS_4_2 751.49
#define NSFoundationVersionNumber_iOS_4_3 751.49
#define NSFoundationVersionNumber_iOS_5_0 881.00
#define NSFoundationVersionNumber_iOS_5_1 890.10
#define NSFoundationVersionNumber_iOS_6_0 992.00
#define NSFoundationVersionNumber_iOS_6_1 993.00
#define NSFoundationVersionNumber_iOS_7_0 1047.20
#define NSFoundationVersionNumber_iOS_7_1 1047.25
#define NSFoundationVersionNumber_iOS_8_0 1140.11
#define NSFoundationVersionNumber_iOS_8_1 1141.1
#define NSFoundationVersionNumber_iOS_8_2 1142.14
#define NSFoundationVersionNumber_iOS_8_3 1144.17
#define NSFoundationVersionNumber_iOS_8_4 1144.17
#define NSFoundationVersionNumber_iOS_8_x_Max 1199
#define NSFoundationVersionNumber_iOS_9_0 1240.1
#define NSFoundationVersionNumber_iOS_9_1 1241.14
#define NSFoundationVersionNumber_iOS_9_2 1242.12
#define NSFoundationVersionNumber_iOS_9_3 1242.12
#define NSFoundationVersionNumber_iOS_9_4 1280.25
#define NSFoundationVersionNumber_iOS_9_x_Max 1299
#endif
3、使用 NSProcessInfo 来判断
- (void)test4 {
// operatingSystemVersionString = Version 10.3.1 (Build 14E304)
NSLog(@"operatingSystemVersionString = %@",[[NSProcessInfo processInfo] operatingSystemVersionString]);
// operatingSystemVersion 是一个结构体,表示当前的系统版本 X.X.X
/*
typedef struct {
NSInteger majorVersion;
NSInteger minorVersion;
NSInteger patchVersion;
} NSOperatingSystemVersion;
*/
NSLog(@"operatingSystemVersion = %ld",[[NSProcessInfo processInfo] operatingSystemVersion].majorVersion);
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){10,3,5}]) {
NSLog(@"大于 iOS 10.3.5");
} else {
NSLog(@"小于 iOS 10.3.5");
}
}
4、Switft 中用法
在 Swift 中支持内置版本检查的语言,非常简单
func test4() {
if #available(iOS 10.0.1, *) {
print("iOS 10.0.1 is available")
} else {
print("iOS 10.0.1 is not available")
}
// 当前系统大于等于 9.3.5 时,返回 true
if #available(iOS 9.3.5, *) {
print("iOS 9.3.5 is available")
}
}