我正进入(状态
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中:
原文链接:https://www.f2er.com/swift/319864.htmlSwift 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 { }