标签: swift3 xcode8 eventtrigger
将Xcode 7.2更新为Xcode 8后,我目前遇到了问题。 Here is the screenshot of the workingspace。在更新之前一切正常。 Apple在触发事件方面有所改变吗?
答案 0 :(得分:2)
选择器的语法发生了重大变化。而不是:
Selector(runCalculation())
您应该使用:
#selector(runCalculation)
有关#selector语法的更多信息,请查看Swift团队的this post。