The UIGestureRecognizer class defines a set of common behaviors that can be configured for all concrete gesture recognizers. It can also communicate with its delegate (an object that adopts the UIGestureRecognizerDelegate protocol), thereby enabling finer-grained customization of some ...
16
votes
7answers
2k views
How can you add a UIGestureRecognizer to a UIBarButtonItem as in the common undo/redo UIPopoverController scheme on iPad apps?
Problem
In my iPad app, I cannot attach a popover to a button bar item only after press-and-hold events. But this seems to be standard for undo/redo. How do other apps do this?
Background
I have ...
13
votes
2answers
1k views
Can you attach a UIGestureRecognizer to multiple views?
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapTapTap:)];
[self.view1 addGestureRecognizer:tapGesture];
[self.view2 ...
12
votes
3answers
9k views
Does UIGestureRecognizer work on a UIWebView?
I am attempting to get a UIGestureRecognizer working with a UIWebview which is a subview of a UIScrollView. This sounds odd but when I have the numberOfTouchesRequired set to 2 the selector fires, but ...
11
votes
1answer
4k views
GestureRecognizer on UIImageView
I have a UIImageView, which I want to be able to resize and rotate etc.
Can a GestureRecognizer be added to the ImageView?
I would want to add a rotate and pinch recognizer to a UIImageView which ...
11
votes
3answers
7k views
UILongPressGestureRecognizer gets called twice when pressing down
I am detecting if the user has pressed down for 2 seconds:
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc]
...
10
votes
2answers
610 views
UIPanGestureRecognizer - Only vertical or horizontal
I have a view that has a UIPanGestureRecognizer to drag the view vertically. So in the recognizer callback, I only update the y-coordinate to move it. The superview of this view, has a ...
10
votes
2answers
6k views
Gesture recognizer and button actions
I have a view hierarchy that looks something like this:
UIView (A)
UIView > UIImageView
UIView > UIView (B)
UIView > UIView (B) > Rounded Rect Button
UIView > UIView (B) > ...
9
votes
2answers
3k views
UIGestureRecognizer and UITableViewCell issue
I am attaching a UISwipeGestureRecognizer to a UITableViewCell in the cellForRowAtIndexPath: method like so:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath ...
8
votes
2answers
336 views
Order of multiple touches in UIGestureRecognizer
It seems that there is no guarantee about the order in which UITouches appear when looping through a UIGestureRecognizer's method [locationOfTouch: inView:]. Specifically:
for (int i = 0; i < ...
7
votes
1answer
646 views
UIGestureRecognizer receive touch but forward it to UIControl as well
How would you allow a UIGestureRecognizer of a UIView to receive a touch event but also make sure that another, underlaying/overlaying UIView also receives that very same touch event?
Lets say I have ...
7
votes
1answer
2k views
How can I capture which direction is being panned using UIPanGestureRecognizer?
Ok so I have been looking around at just about every option under the sun for capturing multi-touch gestures, and I have finally come full circle and am back at the UIPanGestureRecognizer.
The ...
7
votes
1answer
2k views
How to do iPad Photos app pinch to expand
I don't think this has been asked before on this site, but I might be wrong.
Does anyone know the basics of how to get that whole effect with the iPad Photos app? Basically, pinching a stack of ...
6
votes
2answers
592 views
How to reliably find correct view for UIGestureRecognizer?
I have a bunch of UIViews like in the image below. The red/pink (semi-transparent) view is on top of the others.
Red has a UISwipeGestureRecognizer.
Green has as a UITapGestureRecognizer.
Blue has ...
6
votes
2answers
2k views
How to cancel UIGestureRecognizer if subview's button pressed
I am struggling to get the behaviour I would like from the gesture recognisers, specifically cancelling certain gestures if others have fired.
I have a scrollView set to paging and multiple subviews ...
6
votes
1answer
1k views
UIPanGestureRecognizer on MKMapView?
I would like to add some logic when user moves with map view i. e. he does a pan touch. But when I add the gesture recognizer and I want to log the touch, nothing happens. When I try it in another ...
5
votes
1answer
836 views
Is it possible to programmatically show the red delete button on a UITableViewCell?
There are lots of similar questions on here, but none that I think specifically ask this question, which is, is there any way in code to force the red delete button to appear at the right-side of a ...
5
votes
1answer
645 views
rotating a view on touch
I have to rotate a view circularly on finger touch...I mean like dialing the old phones number...and the touch should be only on corners.....can any one help me...i have tried it a lot...but was not ...
5
votes
2answers
2k views
Gesture problem: UISwipeGestureRecognizer + UISlider
Got a gesture related problem. I implemented UISwipeGestureRecognizer to get swipe left and right events and that is working fine. However the problem I'm facing is that the UISlider's I have in the ...
5
votes
1answer
224 views
UIGestureRecognizer movements restrictions
I want to know if there is a way to restrict the size or movements of the UIViews in the GestureRecognizers. Sure I could write my own restriction code but wana know if we can set some property or ...
5
votes
2answers
1k views
How can I tell a UIGestureRecognizer to cancel an existing touch?
I have a UIPanGestureRecognizer I am using to track an object (UIImageView) below a user's finger. I only care about motion on the X axis, and if the touch strays above or below the object's frame on ...
5
votes
2answers
1k views
How do I chain two UIGestureRecognizers together?
What I would like to do is to detect a swipe gesture followed by a pan gesture as part of the same touch sequence. So the user first swipes an object to carry out an action, then, while keeping their ...
4
votes
2answers
34 views
UIGestureRecognizer that cancels when touchup outside of targetView
I have a UIView of which I want to know when the user is doing:
touchDownInside (to highlight the view)
touchUpInside (to confirm the action)
touchUpOutside (to cancel and reset the hightlight)
...
4
votes
3answers
189 views
iphone recognize different shapes with finger movement
I'm developing an application for iPhone, and I want to detect different shapes as my fingers move on iPhone surface. Can anybody help me, how can I detect the different geometric shapes via finger ...
4
votes
1answer
241 views
Issues using UITapGestureRecognizers in Interface Builder
I'm attempting to use the UITapGestureRecognizer object that can be found in Interface Builder. I've dragged a single "UITapGestureRecognizer" from the object library to a single view xib. I then ...
4
votes
3answers
181 views
Tap duration in cocos2d
Any ideas how to handle tap duration in cocos2d?
I need to do something after the user holds his or her finger on a certain sprite for about 1-2 secs.
Thanks.
4
votes
1answer
442 views
UIView over another uiview and pass touches through
I have a view sitting over another view. The top view has a UITapGestureRecognizer so I can close the menus (click outside of the menus). But the layer below this needs to receive all the touches.
I ...
4
votes
1answer
426 views
Can UILongPressGestureRecognizer be used together with touch events like touchesMoved?
If I add a UILongPressGestureRecognizer to an object is there a way to get a touchesMoved event in that object to fire after my longGesture selector responds to the longpress gesture without having to ...
4
votes
2answers
2k views
UIGestureRecognizer blocks subview for handling touch events
I'm trying to figure out how this is done the right way. I've tried to depict the situation in this image.
I'm adding a UITableView as a subview of a UIView. The UIView responds to a tap- and ...
4
votes
1answer
1k views
How do you stop UITapGestureRecognizer from catching EVERY tap?
Hello I have an opengl view and on that I have a tab bar. I'm using a tap recognizer to tap different 3d objects on screen. In the tab bar I have a button but it doesn't work because the tap ...
4
votes
1answer
750 views
Splitting a touch sequence between multiple UIGestureRecognizer instances
I'm developing an iPhone/iPad app that supports dragging items between table views. Since all the tables don't fit on screen, I've written a custom UIScrollView that lays them out horizontally, and ...
4
votes
3answers
1k views
How can I determine if a user has pressed on a UITableViewCell for 2 seconds?
I am using gesture recognizers:
Initialize in viewDidLoad:
UILongPressGestureRecognizer *longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self ...
4
votes
1answer
816 views
Do I need to release a gesture recognizer?
If I add a gesture recognizer to a table cell called cell, e.g.:
UILongPressGestureRecognizer *_longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self ...
4
votes
1answer
671 views
Write a Circular UIGestureRecognizer
I'm looking to create a jog wheel in an iPhone / iPad application. I know that you can subclass UIGestureRecognizer to write your own recognizers. Does anyone know how (mainly the maths behind it) to ...
4
votes
2answers
2k views
Drag-n-Drop from UIPopoverController to other UIView
How would I go about implementing dragging and dropping a UIView from UIPopoverController into the back UIView.
This is the functionality that Pages provide in their insert media popover, where you ...
4
votes
2answers
4k views
UIgestureRecognizer in a view inside a UIScrollView
Has anyone managed to get a UIGestureRecognizer to work on a UIView that is a subview of a UIScrollView? My callbacks never seems to get called.
As a simple example, I want to have a paging ...
4
votes
2answers
1k views
UIPanGestureRecognizer starting point is off
I have a UIView that has a UIPanGestureRecognizer attached to it the gesture is working fine except that the starting point is not where the pan first started it is usually off by 5 to 15 pixels in ...
3
votes
2answers
24 views
How to zoom while keeping the previous rotation transform as it is?
I have an imageView, to which, I have added UIPinchGestureRecognizer and UIRotationGestureRecognizer.
in pinch gesture, I transform and scale the View and in rotation gesture I apply rotation ...
3
votes
1answer
94 views
locationOfTouch results in SIGABRT
I'm trying to figure out why I get an error when I use locationOfTouch:inView. Eventually I created a new view with just the locationOfTouch call and I still get a SIGABRT whenever I touch the view.
...
3
votes
1answer
137 views
Disable 2 finger scrolling in UIScrollView
I'd like to disable 2 finger scrolling in my UIScrollView.
I subclassed my scrollview and tweaked its built-in gesture recognizers with the following code :
for (UIGestureRecognizer ...
3
votes
1answer
123 views
Best way to recognise number drawn by user's finger on iPhone screen
I'm planning on letting a user draw the shape of a number (1 to 9) in the shape of a 7-segment display. What is the best way to detect what number was drawn?
I know how to do all the touch-tracking ...
3
votes
3answers
132 views
Activity Indicator above Button prevents Click Recognition
I have an UIButton "bn" and an UIActivityIndicator "ai" which is above the button (ai.center = bn.center).
As long as ai is visible and animating, I can't press the Button underneath ai's frame but ...
3
votes
1answer
275 views
UIView animation based on UIPanGestureRecognizer velocity
I would like to be able to move a subview on and off the screen much like you browse between images in the iPhone's build in Photos app, so if the subview is more than 1/2 off screen when I let go ...
3
votes
3answers
2k views
UIPageViewController Gesture recognizers
I've been working on an application for a while now, but I couldn't ask this question due to the NDA.
I have a UIPageViewController load with my Viewcontroller. The view controllers have buttons ...
3
votes
1answer
87 views
Change Gesture Recogniser Positon?
I have a gesture recogniser to detect a tap on a UIImageView, however I force a position change of the image when the orientation of the iPad changes but this causes the gesture recogniser to ...
3
votes
1answer
262 views
iphone - single tap gesture conflicts with double one
I have a view. I wish to define to kinds of tap gestures for it.
So if a user single tap on the view, view will do A; and if a user double tap on the view, it will do B without doing A.
I added two ...
3
votes
2answers
152 views
UIGestureRecognizer Detection Order
Okay, I have a viewA with the subView viewB. Both of them have a gestureRecognizer assigned to them. Now I'm using
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer ...
3
votes
1answer
153 views
Trying to draw inside of a uiscrollview
We would like to be able to display a large picture inside a uiscrollview which can be scrolled using two finger, and then allow the user to draw on it using one finger.
We've already made an app ...
3
votes
1answer
170 views
Limit UIGestureRecognizer to special area
is there a way to limit a UIGestureRecognizer to a special area of a view? For example the top and bottom 100px of a view?
Thanks in advance,
Dom
3
votes
1answer
960 views
UIView pass through certain events
I have a UIView on top of another UIView and I would like the top one to only respond to a UITapGestureRecognizer on 1, 2 and 3 taps, but any other event would be passed though to the UIView below it. ...
3
votes
2answers
2k views
UISwipeGestureRecognizer Swipe length
Any idea if there is a way to get the length of a swipe gesture or the touches so that i can calculate the distance?