ios – swift中强类型的选择器

前端之家收集整理的这篇文章主要介绍了ios – swift中强类型的选择器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道我们可以在 swift中实现强类型选择器吗?例如,如果我在视图控制器中有一个名为buttonTapped(sender:AnyObject)的方法,那么当我们将该方法作为目标添加到某个按钮时,我们可以说
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)

原文链接:https://www.f2er.com/iOS/332300.html

猜你在找的iOS相关文章