Attach parameter to button.addTarget action in Swift Attach parameter to button.addTarget action in Swift swift swift

Attach parameter to button.addTarget action in Swift


You cannot pass custom parameters in addTarget:.One alternative is set the tag property of button and do work based on the tag.

button.tag = 5button.addTarget(self, action: "buttonClicked:",     forControlEvents: UIControlEvents.TouchUpInside)

Or for Swift 2.2 and greater:

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

Now do logic based on tag property

@objc func buttonClicked(sender:UIButton){    if(sender.tag == 5){        var abc = "argOne" //Do something for tag 5    }    print("hello")}


If you want to send additional parameters to the buttonClicked method, for example an indexPath or urlString, you can subclass the UIButton:

class SubclassedUIButton: UIButton {    var indexPath: Int?    var urlString: String?}

Make sure to change the button's class in the identity inspector to subclassedUIButton. You can access the parameters inside the buttonClicked method using sender.indexPath or sender.urlString.

Note: If your button is inside a cell you can set the value of these additional parameters in the cellForRowAtIndexPath method (where the button is created).


I appreciate everyone saying use tags, but really you need to extend the UIButton class and simply add the object there..

Tags are a hopeless way round this. Extend the UIButton like this (in Swift 4)

import UIKitclass PassableUIButton: UIButton{    var params: Dictionary<String, Any>    override init(frame: CGRect) {        self.params = [:]        super.init(frame: frame)    }    required init?(coder aDecoder: NSCoder) {        self.params = [:]        super.init(coder: aDecoder)    }}

then your call may be call (NOTE THE colon ":" in Selector(("webButtonTouched:")))

let webButton = PassableUIButton(frame: CGRect(x:310, y:40, width:40, height:40))webButton.setTitle("Visit",for: .normal)webButton.addTarget(self, action: #selector(YourViewController.webButtonTouched(_:)), for:.touchUpInside)webButton.params["myvalue"] = "bob"

then finally catch it all here

@IBAction func webButtonTouched(_ sender: PassableUIButton) {    print(sender.params["myvalue"] ?? "")}

You do this one time and use it throughout your project (you can even make the child class have a generic "object" and put whatever you like into the button!). Or use the example above to put an inexhaustible number of key/string params into the button.. Really useful for including things like urls, confirm message methodology etc

As an aside, it's important that the SO community realise this there is an entire generation of bad practice being cut'n'paste round the internet by an alarming number of programmers who don't understand/haven't been taught/missed the point of the concept of object extensions