После обновления до бета-версии Xcode 7 появляется следующее сообщение об ошибке: "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)
}
}
}