Whats the code for button action?

168 Views Asked by At

Me again, I'm loving this library but running into minor issues here and there.

For RaisedButton, what code is needed to create an action when the button is create programatically?

btn1.addTarget(self, action: "okButton", forControlEvents: UIControlEvents.TouchUpInside)

func okButton(sender:RaisedButton!) {
    print("button pressed")
}

results in unrecognized selector sent to instance.

2

There are 2 best solutions below

0
On BEST ANSWER

In your code remove the unwrapping of the optional parameter:

func okButton(sender: RaisedButton) {
    print("button pressed")
}

Add the ":" at the end of your selector name:

btn1.addTarget(self, action: "okButton:", forControlEvents: .TouchUpInside)

That should solve your issue :)

0
On

You will need to give "okButton:" as action as it takes an argument.

Try:

btn1.addTarget(self, action: "okButton:", forControlEvents: UIControlEvents.TouchUpInside)