gpt4 book ai didi

ios - 如果#可用(iOS 9,*)不工作

转载 作者:可可西里 更新时间:2023-11-01 01:37:32 24 4
gpt4 key购买 nike

我发现我的代码中有一行不喜欢在 iOS8 上运行,但有一种方法可以在 iOS8 上使用不同的逻辑执行相同的任务,这与 iOS9 不一样。

我已经使用 if#available(iOS 9, *) 来执行我在 iOS9 上需要的代码和在 iOS8 上的代码。然而,在运行时,在调用该函数几次后,iOS9 设备运行了它不应该运行的代码并崩溃了。我是否错过了设置 if#available(iOS 9, *) 的步骤?

代码如下

if #available(iOS 9, *) {
if(self.otherChats[loc].last?.timestamp! != messageObj.timestamp!){
self.otherChats[loc].append(messageObj)
self.Notfication.postNotificationName(_Chat.Notification.DidGetMessage, object: nil)
}
} else {
self.otherChats[loc].append(messageObj)
self.Notfication.postNotificationName(_Chat.Notification.DidGetMessage, object: nil)
}

最佳答案

   let systemVersion = UIDevice.currentDevice().systemVersion        
if((Double)(systemVersion) > 9.0)
{
if(self.otherChats[loc].last?.timestamp! != messageObj.timestamp!){
self.otherChats[loc].append(messageObj)
self.Notfication.postNotificationName(_Chat.Notification.DidGetMessage, object: nil)
}
}
else
{
self.otherChats[loc].append(messageObj)
self.Notfication.postNotificationName(_Chat.Notification.DidGetMessage, object: nil)
}

关于ios - 如果#可用(iOS 9,*)不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34870116/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com