I am making an app with a variable amount of views all with a TapGestureRecognizer. When the view is pressed, i currently am doing this
func addView(headline: String) {
// ...
let theHeadline = headline
let tapRecognizer = UITapGestureRecognizer(target: self, action: Selector("handleTap:"))
// ....
}
but in my function "handleTap", i want to give it an additional parameter (rather than just the sender) like so
func handleTap(sender: UITapGestureRecognizer? = nil, headline: String) {
}
How do i send the specific headline (which is unique to every view) as an argument to the handleTap-function?
This is the full source code: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super. viewDidLoad() let tapGesture = CustomTapGestureRecognizer(target: self, action: #selector(tapSelector(sender:))) tapGesture. ourCustomValue = "This is a value we can set" self.
UITapGestureRecognizer is a concrete subclass of UIGestureRecognizer . For gesture recognition, the specified number of fingers must tap the view a specified number of times. Although taps are discrete gestures, they're discrete for each state of the gesture recognizer.
Instead of creating a generic UITapGestureRecognizer, subclass it and add a property for the headline:
class MyTapGestureRecognizer: UITapGestureRecognizer {
var headline: String?
}
Then use that instead:
override func viewDidLoad() {
super.viewDidLoad()
let gestureRecognizer = MyTapGestureRecognizer(target: self, action: "tapped:")
gestureRecognizer.headline = "Kilroy was here."
view1.addGestureRecognizer(gestureRecognizer)
}
func tapped(gestureRecognizer: MyTapGestureRecognizer) {
if let headline = gestureRecognizer.headline {
// Do fun stuff.
}
}
I tried this. It worked great.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With