button.addTarget(self,selector:VIEwController.buttonTapped(self),forControlEvents: .touchUpInsIDe)解决方法 Swift 2.2使用#selector语法编译时检查选择器,参见 https://swift.org/blog/swift-2-2-new-features/和 Using Swift with Cocoa and Objective-C (Swift 2.2)
对于您的示例,它将以这种方式编写:
button.addTarget(self,selector:#selector(VIEwController.buttonTapped(_ :)),forControlEvents:.touchUpInsIDe)
总结以上是内存溢出为你收集整理的ios – swift中强类型的选择器全部内容,希望文章能够帮你解决ios – swift中强类型的选择器所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)