什么是Swift预处理器相当于iOS版本检查比较?

前端之家收集整理的这篇文章主要介绍了什么是Swift预处理器相当于iOS版本检查比较?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正进入(状态
yld: Symbol not found: _OBJC_CLASS_$_UIUserNotificationSettings

这是在iOS7设备上运行应用程序时导致错误功能,甚至在代码中完全没有调用功能.

06001

在iOS7设备上运行时,我根本不希望该方法可以访问.我不想在其中进行选择检查,因为这意味着该方法可用于开始.

我想要的是一个build config参数来检查版本:
我无法找出一种方法来编写一个快速的等效预处理器宏来检查正确的iOS版本,并忽略新的和未声明的iOS 8库函数.

#if giOS8OrGreater
// declare the functions that are iOS 8 specific
#else 
// declare the functions that are iOS 7 specific

#endif

在文档中,苹果正在建议函数和泛型代替复杂的宏,但在这种情况下,我需要一个构建配置预编译检查,以避免处理未声明的函数.有什么建议么.

在Constants.swift中:

Swift 1:

let Device = UIDevice.currentDevice()
private let iosVersion = NSString(string: Device.systemVersion).doubleValue

Swift 2:

let Device = UIDevice.currentDevice()
private let iosVersion = Double(Device.systemVersion) ?? 0 

let iOS8 = iosVersion >= 8
let iOS7 = iosVersion >= 7 && iosVersion < 8

然后在其他文件

if iOS8
{

}
else
{

}
原文链接:https://www.f2er.com/swift/319864.html

猜你在找的Swift相关文章