swift 带参数的选择器

Posted

tags:

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


func onSendEmail(emailAddr:String) {
}

// Method 1: colon behind the method name
let btnEmail = UIBarButtonItem.init(title: "Email Me", style: .plain, target: self, action: #selector(onSendEmail:))


// Method 2: 
let btnEmail = UIBarButtonItem.init(title: "Email Me", style: .plain, target: self, action: #selector(onSendEmail as (String) -> ()))

以上是关于swift 带参数的选择器的主要内容,如果未能解决你的问题,请参考以下文章

使用带参数的重新选择选择器

在 Swift 中将参数传递给选择器

使用 UITapGestureRecognizer、UIImageView 和 UITableViewCell 将参数传递给 Swift 中的选择器

带参数的Mixin

无法识别的选择器发送到实例 - Swift

单击 ImageView 并在 Swift/Xcode 中执行没有选择器的函数