看按钮按下崩溃

时间:2018-05-22 22:51:32

标签: swift watchkit

它似乎与this unanswered SO question的错误和条件相同,但我还有更多要添加的内容(它很容易复制)

在最新的Xcode中创建一个新项目

使用WatchKit App的iOS应用程序

转到WatchKit应用程序> Interface.storyboard并在Interface Controller Scene上放置一个按钮>接口控制器 enter image description here

转到WatchKit Extension> InterfaceController.swift并添加一个新成员

@IBOutlet var scheduleMeetingButton: WKInterfaceButton!

和方法

@IBAction func scheduleMeeting(_ sender: Any) { }

然后返回Interface.storyboard并将这两个链接到按钮

启动应用程序(在手表模拟器上) enter image description here

而不是单击按钮,您将收到此exec错误

enter image description here

导致此错误的原因是什么?

1 个答案:

答案 0 :(得分:1)

从查看你的代码我建议你更新发件人的动作功能:任何发件人:wkinterfacebutton希望这有帮助!