Top "Uitapgesturerecognizer" questions

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

Swift - Tap gesture to dismiss keyboard UITableView

I have an identical question to this one , but since I'm new to programming and only really know swift I …

uitableview swift uitapgesturerecognizer
Swift: how to make a UIView clickable in UITableViewCell?

Inside a UITableViewCell, I am trying to implement a button with both an image and a text. It seems the …

ios swift uitableview uiview uitapgesturerecognizer
How to detect double-taps on cells in a UICollectionView

I want to respond to double-taps on cells in a UICollectionView, and have a double-tap action cancel cell selection. This …

ios objective-c uicollectionview uikit uitapgesturerecognizer
How to detect tap and double tap at same time using UITapGestureRecognizer?

For example I have a view where I want two different gestures: tap to do action A. double tap to …

iphone ios uigesturerecognizer uitapgesturerecognizer
swift uitapgesturerecognizer pass parameters

I have a lot of Buttons created programmatically and that can change anytime. my tap gesture : let apriVideoGesture = UITapGestureRecognizer(target: …

swift uitapgesturerecognizer
How to pass argument to action in UIGestureRecognizer initWithTarget action

I am using the code below UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(processTap)]; - (void) processTap { //do something } …

selector uitapgesturerecognizer
Tap on UISlider to Set the Value

I created a Slider (operating as control of the video, like YouTube has at the bottom) and set the maximum (…

ios swift uigesturerecognizer uislider uitapgesturerecognizer
How to use Gesture Recognizers in IB (iPhone/iPad)?

I have just discovered the Gesture Recognizers in IB and I would like to make use of them. I've tried …

iphone interface-builder uigesturerecognizer ibaction uitapgesturerecognizer
Detect tap on UIImageView IOS

Am I doing something wrong? I can't detect the tap on the UIImageview. The UIImageView *myImage is create in storyboard. …

ios imageview uitapgesturerecognizer