Top "Uitapgesturerecognizer" questions

UITapGestureRecognizer is a concrete subclass of UIGestureRecognizer that looks for single or multiple taps.

UITapGestureRecognizer unrecognized selector sent to instance

I've searched for solutions to this problem but couldn't find anything that seems to address it in my case. I'm …

ios swift selector uitapgesturerecognizer
Sending arguments to gesture recognizer initialization selector?

In my program, I have a UITapGestureRecognizer which I have initialized with initWithTarget: action:. I have passed in a selector …

objective-c ios methods selector uitapgesturerecognizer
iOS How to dismiss UIAlertView with one tap anywhere?

I want to dismiss UIAlertView anywhere outside it with one tap. I want to show a UIAlertView without any button. …

ios uialertview uitouch uitapgesturerecognizer
Make a UIView draggable with the finger

I have the mainViewController but I have an small UIView inside that is activated when you tap a MKAnnotationView in …

ios uiview draggable uitapgesturerecognizer touchesmoved
How to enable "tap and slide" in a UISlider?

What I want to get is a UISlider which lets the user not only slide when he starts on its …

ios uigesturerecognizer uislider uitapgesturerecognizer
swift UITapGestureRecognizer not working on view

I had to create a new thread bcoz it's driving me crazy and all the other answers online are exactly …

swift uitapgesturerecognizer
Tap Gesture on part of UILabel

I could successfully add tap gestures to a part of UITextView with the following code: UITextPosition *pos = textView.endOfDocument;// textView ~ …

iphone ios uilabel uitapgesturerecognizer uitextinput
Add UITapGestureRecognizer to UITextView without blocking textView touches

How can I add a UITapGestureRecognizer to a UITextView but still have the touches getting through to the UITextView as …

ios swift uitextview uitapgesturerecognizer
iOS 7.1 UITapGesture not working with UIPickerView

We are using a UIPickerView to allow a user to select from a list of options. We are adding UIPickerView …

uipickerview uitapgesturerecognizer ios7.1
Add a tap gesture to a part of a UILabel

I have a NSAttributedString like so: NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"testing it out @clickhere"]; NSInteger length = str.length; [str …

ios iphone uilabel nsattributedstring uitapgesturerecognizer