gpt4 book ai didi

ios - 'openParentApplication(_ :reply:)' has been explicitly marked unavailable here - Xcode 7 Beta

转载 作者:IT王子 更新时间:2023-10-29 05:23:37 25 4
gpt4 key购买 nike

更新到 Xcode 7 beta 后,在运行代码行“WKInterfaceController.openParentApplication”时,我收到以下错误消息:“‘openParentApplication(_:reply:)’已在此处明确标记为不可用”

这是我的实际代码:

func getData(messageText: String) {
let infoDictionary = ["message" : messageText]
WKInterfaceController.openParentApplication(infoDictionary) {
(replyDictionary, error) -> Void in

if let castedResponseDictionary = replyDictionary as? [String: String],
responseMessage = castedResponseDictionary["message"]
{
print(responseMessage)
}
}
}

最佳答案

+[WKInterfaceController openParentApplication:]仅与 WatchKit1 应用扩展相关,因为对于 WatchKit1 应用扩展,appex 在手机上运行而不是在 watch 上运行。

有了 WatchKit2 应用程序扩展,应用程序在 watch 上运行,因此完成这样的操作就不那么简单了。您可能想使用 -[WCSession sendMessageData:replyHandler:errorHandler:]从 WatchConnectivity.framework 获取您正在做的事情。

关于ios - 'openParentApplication(_ :reply:)' has been explicitly marked unavailable here - Xcode 7 Beta,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30821219/

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