在Swift中将参数附加到button.addTarget操作

前端之家收集整理的这篇文章主要介绍了在Swift中将参数附加到button.addTarget操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图传递一个额外的参数到buttonClicked动作,但不能解决什么语法应该在Swift。
button.addTarget(self,action: "buttonClicked:",forControlEvents: UIControlEvents.TouchUpInside)

任何我的buttonClicked方法

func buttonClicked(sender:UIButton)
{
    println("hello")
}

任何人的想法?

谢谢你的帮助。

您不能在addTarget中传递自定义参数:。一个替代方法是设置button的tag属性,并根据标记工作。
button.tag = 5
button.addTarget(self,forControlEvents: UIControlEvents.TouchUpInside)

或者对于Swift 2.2和更高版本:

button.tag = 5
button.addTarget(self,action:#selector(buttonClicked),forControlEvents:.TouchUpInside)

现在做基于标签属性的逻辑

func buttonClicked(sender:UIButton)
{
    if(sender.tag == 5){

        var abc = "argOne" //Do something for tag 5
    }
    print("hello")
}
原文链接:https://www.f2er.com/swift/321327.html

猜你在找的Swift相关文章