本文介绍了FBSOpenApplicationErrorDomain 代码=3的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚刚在我的项目中添加了一个 Watch 应用并尝试:
I just added a Watch app to my project and try :
override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)
let res = WKInterfaceController.openParentApplication(["key" : "value"]) { (replyInfo, error) -> Void in
print("replyInfo : \(replyInfo) + error \(error)")
}
print(res) // true here
}
在我的 AppDelegate 中我写道:
In my AppDelegate I wrote :
func application(application: UIApplication, handleWatchKitExtensionRequest userInfo: [NSObject : AnyObject]?, reply: ([NSObject : AnyObject]?) -> Void) {
reply(["replyKey" : "replyValue"]);
}
当我启动 Watch 应用时,我只有:
When I launch the Watch app I just have :
replyInfo : [:] + error 可选(错误Domain=FBSOpenApplicationErrorDomain Code=3 "操作不能完全的.(FBSOpenApplicationErrorDomain eor 3.)")
是模拟器的原因吗?你知道我做错了什么吗?
Is it due to the simulator ? Do you know what am doing wrong ?
谢谢!
推荐答案
iOS Simulator -> Reset Contents and Settings...
iOS Simulator -> Reset Contents and Settings...
为我工作
iOS 模拟器 -> 重置内容和设置... -> 重置
这篇关于FBSOpenApplicationErrorDomain 代码=3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!