Top "Uitapgesturerecognizer" questions

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

How can I shorten the time "delayTouchesBegan" delays touchesBegan?

In one of my view controllers I have several views that contain a UITapGestureRecognizer, along with an implementation of touchesBegan. …

ios iphone objective-c uitapgesturerecognizer touchesbegan
Add a click event to some text in ios NSString

I have the following code and want to make parts of my text be clickable and call another UIViewController (not …

ios iphone uibutton nsattributedstring uitapgesturerecognizer
pass parameter to UITapGestureRecognizer

i have created dynamic UIimage view and and UITapGestureRecognizer to the view its look like this UIImageView *image = [[UIImageView alloc ] …

ios ios6 uitapgesturerecognizer
Disable GestureRecognizer

I have a simple memory game. But i want to turn off the tap function. When I use imageViewGurka1.gestureRecognizers=…

ios ipad uigesturerecognizer uitapgesturerecognizer
Passing arguments to #selector method in swift

I want to pass multiple argument to a function while I click an image. Here is my code var param1 = 120 …

swift swift2 uitapgesturerecognizer
iOS - Add Tap Gesture to UITextField

I have problem with add a Tap Gesture to my UITextField. Below code: @IBAction func hanldeTap(recognizer: UITapGestureRecognizer) { println("works") } …

ios swift uitextfield uitapgesturerecognizer
how to call @selector method from another class

is it possible to call @selector methods from another class ? for example i make a method "bannerTapped:" and call it …

objective-c ios7 uitapgesturerecognizer instance-methods
iOS - Multiple Tap gesture recognizers

In my application, i've to detect single, double and triple taps. So, I'm using UITapGestureRecognizer. I'm using the following code: …

ios tap uitapgesturerecognizer
Adding Multiple UITapGestureRecognizers to single view (Cocos2d)

I am adding the following code in the onEnter method. doubleTapRecognizer_ = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleDoubleTap:)]; doubleTapRecognizer_.numberOfTapsRequired = 2; …

uiview cocos2d-iphone uitapgesturerecognizer
Receive tap gestures only on part of a view

I have a UIImageView in a view controller. Is it possible to make certain areas of the image view tappable? …

ios map uiimageview uitapgesturerecognizer