我试图传递一个额外的参数到buttonClicked动作,但不能解决什么语法应该在Swift。
button.addTarget(self,action: "buttonClicked:",forControlEvents: UIControlEvents.TouchUpInside)
任何我的buttonClicked方法:
func buttonClicked(sender:UIButton) { println("hello") }
任何人的想法?
谢谢你的帮助。
您不能在addTarget中传递自定义参数:。一个替代方法是设置button的tag属性,并根据标记工作。
原文链接:https://www.f2er.com/swift/321327.htmlbutton.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") }