'openParentApplication(_:reply :)'在这里明确标记为不可用 - Xcode 7 Beta

时间:2015-06-13 16:55:16

标签: ios xcode swift watchkit beta

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

这是我的实际代码:

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)
        }
    }
}

1 个答案:

答案 0 :(得分:16)

+[WKInterfaceController openParentApplication:]仅与WatchKit1应用扩展程序相关,因为使用WatchKit1应用扩展程序,appex正在手机上运行,​​而不是在手表上运行。

使用WatchKit2 app扩展程序,appex正在手表上运行,因此这样的操作不那么容易实现。您可能希望使用WatchConnectivity.framework中的-[WCSession sendMessageData:replyHandler:errorHandler:]来处理您正在做的事情。