Swift addTarget中的Selector

Posted fengyaoyao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift addTarget中的Selector相关的知识,希望对你有一定的参考价值。

ios上运行时,会报找不到mapTypeChanged的错误

segemntedControl.addTarget(self, action: "mapTypeChanged", for: .valueChanged)

正确的做法是

segemntedControl.addTarget(self, action: #selector(MapViewController.mapTypeChanged(segControl:)), for: .valueChanged)

  

 

以上是关于Swift addTarget中的Selector的主要内容,如果未能解决你的问题,请参考以下文章

'#selector'的参数不引用Swift按钮目标中的'@objc'方法,属性或初始化程序

Swift UISwitch 选择器内联

UIControl (addTarget:action:forControlEvents:) @selector 参数

如何在 addTarget #Selector 中将静态参数传递给 UIRefreshControl() 的本地函数

swift之@objc

Swift:以编程方式在 UICollectionViewCell 中的 IndexPath 中的多个 UIButton,下一个 addTarget 不单击