Top "Uitapgesturerecognizer" questions

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

Create tap-able "links" in the NSAttributedString of a UILabel?

I have been searching this for hours but I've failed. I probably don't even know what I should be looking …

ios hyperlink uilabel nsattributedstring uitapgesturerecognizer
How to make a UILabel clickable?

I would like to make a UILabel clickable. I have tried this, but it doesn't work: class DetailViewController: UIViewController { @IBOutlet …

ios swift uilabel uitapgesturerecognizer
tap gesture recognizer - which object was tapped?

I'm new to gesture recognizers so maybe this question sounds silly: I'm assigning tap gesture recognizers to a bunch of …

ios objective-c uigesturerecognizer uitapgesturerecognizer
UITapGestureRecognizer - single tap and double tap

I am trying to add 2 UITapGestureRecognizers to a view, one for single tap and one for double tap events. The …

ios iphone uigesturerecognizer uitapgesturerecognizer
Click Event on UIImageView programmatically in ios

I am displaying a image from code here is the code UIImageView *preArrowImage =[[UIImageView alloc]init ]; preArrowImage.image =[UIImage imageNamed:@"…

iphone ios uiimageview uitouch uitapgesturerecognizer
UITapGestureRecognizer breaks UITableView didSelectRowAtIndexPath

I have written my own function to scroll text fields up when the keyboard shows up. In order to dismiss …

ios uitableview uitapgesturerecognizer
How do I implement the UITapGestureRecognizer into my application

I am quite new to programming and Objective C. I was wondering how to make an app which has a …

ios objective-c user-interface uigesturerecognizer uitapgesturerecognizer
UIButton inside a view that has a UITapGestureRecognizer

I have view with a UITapGestureRecognizer. So when I tap on the view another view appears above this view. This …

ios objective-c iphone cocoa-touch uitapgesturerecognizer
Passing through touches to UIViews underneath

I have a UIView with 4 buttons on it and another UIView on top of the buttons view. The top most …

iphone ios uiview uiimageview uitapgesturerecognizer
UITapGestureRecognizer tap on self.view but ignore subviews

I need to implement a feature that will invoke some code when I double tap on the self.view (view …

ios uitapgesturerecognizer