I created a custom control and I want to pass the action in an @IBInspectable property to achieve the same effect of setting up an @IBAction using UIButton. How should I go about doing this?
class MyControl: UIButton {
// Problem with this string approach is
//I have no way to know which instance to perform the selector on.
@IBInspectable var tapAction: String?
// set up tap gesture
...
func labelPressed(_ sender: UIGestureRecognizer) {
if let tapAction = tapAction {
// How should I convert the string in tapAction into a selector here?
//I also want to pass an argument to this selector.
}
}
}
I really don't know why do you want it, but... Here is my solution:
Create a
MyActions
class, with actions thatMyControl
can to call:Replace your
MyControl
class toAnd, set attributes of your button:
You can change the Tap Action in run time, for example:
Maybe you can change my code to pass parameters, but... it's you want?