UIGestureRecognizer is an abstract base class for concrete gesture-recognizer classes. A gesture-recognizer object (or, simply, a gesture recognizer) decouples the logic for recognizing a gesture and acting on that recognition. When one of these objects recognizes a common gesture or, in some cases, ...
0
votes
0answers
16 views
IOS Autocomplete Table Blocked By UIGestureRecognizer
I've seen this question around a few times, and I believe I've implemented the recommended solution, but I still can't seem to get my app to work. The problem is, I have a UIGestureRecognizer in my ...
-1
votes
3answers
58 views
Adding GestureRecognizers
I am adding a UISwipeGestureRecognizer and a UITapGestureRecognizer to a view in a view controller's viewDidLoad method.
- (void)viewDidLoad {
[super viewDidLoad];
[self.view ...
0
votes
0answers
7 views
CGPoint PreviousLocation - UIGestureRecognizer
I know it seems like it's a fairly easy to do, but i can't seem to figure it out and i've researched a lot of places but really what i want it's no where.
i'm creating a puzzle game and the images ...
0
votes
1answer
16 views
Custom gesture not sending action message
I have created a UIGestureRecognizer subclass called LongPressGestureRecognizer to simulate a long press gesture. (Yes, I know about the concrete subclass which already exists, I'm just learning ...
1
vote
1answer
23 views
tapping on UIImageView and opening a bigger Image
I have an app that displays, in a tableview, an image and some details. I'm trying to make it so that, when someone touches on the image displayed in my table view, the app opens the same image in a ...
4
votes
3answers
46 views
Three Layers of Pan Gesture Recogniser Confusion
Whilst developing an app I have come up against a problem with having too many pan gesture recognisers.
My first pan gesture recogniser is on the MainViewController which is a parent of the ...
0
votes
2answers
40 views
UISwipeGestureRecognizer blocked by UITapGestureRecognizer
I have a view which needs to handle pan, tap, and swipe gestures. I have pan and tap working, but when I add swipe, it doesn't work. Curiously, it seems that tap somehow blocks the swipes because if I ...
0
votes
0answers
12 views
Android - Shapes gesture
Is there any library or solution to recognize a shape gesture on Android? e.g, user use finger to draw some shapes on screen, How can I recognize them and convert to vertex shapes such as: rectangle, ...
0
votes
0answers
18 views
Drag in Notification Center without activating my app's feature
I am swiping down to activate a feature in my app - more precisely to replay a video. The problem I have is that when I'm dragging in the notification center (within my app) it is a Swipe Down gesture ...
1
vote
2answers
38 views
Slide to reveal a view like NotificationCenter/Twitter
I'm trying to mimic Twitter's "slide up to show" action as soon in the attached images:
If you notice the detail view is hidden in the first with just a little indicator there's more there. Then ...
0
votes
1answer
55 views
how to create custom cell in tableView (swipe cell)
I want to create one application that in self has tableview.this tableView show has many cell in self.I want when push right to left in one cell display another page in cell (like yahoo mail that when ...
0
votes
1answer
30 views
Detecting a swipe that started outside of Gesture Recognizer object's area
I am trying to detect swipes in a very specific way, and am having mixed results. My first problem was recognizing swipes in only a certain region of the screen, which is now solved. My current ...
0
votes
1answer
16 views
Constricting UISwipeGestureRecognizer to only detect swipes within the area of a IUImageView
I am currently using the following code to detect swipe gestures in my app:
- (IBAction)swiperMethod:(UISwipeGestureRecognizer *)sender {
_sampleText.text=@"hi";
}
- (void)viewDidLoad
{
...
0
votes
1answer
19 views
Trouble getting UISwipeGestureRecognizer working, never detecting swipes?
I am trying to setup a very simple swipe recognizer to change the text inside a text label upon swiping. I tried to follow apple's tutorial here, but the swipe is apparently never recognized, because ...
0
votes
1answer
21 views
snapping uiview to particular angle when rotating, locks it and cannot move again
I only want use to be able to rotate to 0 degrees, 90 degrees, 180 degree, 270 degrees, not in-between. But even after rotating, I want the user to not be locked in to their rotating and rotate once ...
0
votes
1answer
25 views
Disabling simultaneous rightBarButton / tapGestureRecognizer touch
I have a viewController that makes its navigationBar and statusBar disappear / reappear when the user taps the screen (much like the photos app). I'm noticing when I push the rightBarButton "Done" on ...
0
votes
0answers
20 views
UIGestureRecogniser kills CCTime
I am building onto the CatMaze project from this RayWenderlich tutorial. I am trying to add UIGestureRecognizer with this tutorial. I've done everything with UIKit down to the point where you add ...
0
votes
1answer
24 views
How to get UITouch location from UIGestureRecognizer
I want to get the UITouch location of my tap from UIGestureRecognizer, but I can not figure out how to from looking at both the documentation and other SO questions. Can one of you guide me?
- ...
0
votes
0answers
18 views
UIGesture recognizer override scroll view scroll gesture
How do I cancel a scrollView's scroll when a subView's gestureRecognizer is activated?
I have a view that is a subView of a scroll view. The subView has a pan gesture recognizer. I would like to move ...
0
votes
1answer
64 views
Slide back in UINavigationController like in Facebook for iOS
I saw the Facebook app update for iOS (6.1.1) and it has a rely nice slide back function. For now I have a UISlideGestureRecognizer that when is called a do a [self.navigationController ...
1
vote
1answer
60 views
iOS: Is it possible to add a triple tap gesture recognizer to a MKMapView?
I have a MKMapView, which zooms in when double tapped (default behavior). I want to add a triple tap gesture recognizer to the map view that zooms out again to a certain initial zoom level.
The ...
-1
votes
0answers
48 views
UITapGestureRecognizer Freeze
I have some picture on a view, and I want that when user double-taps on it, to have the images move from point A to point B.
Code for recognize doubleTap
[super viewDidLoad];
...
0
votes
2answers
72 views
How to check line intersect in iOS?
I want to check line intersect in this demo example.
https://www.cocoacontrols.com/controls/android-pattern-lock-on-iphone
In this example I want to check when line intersect and show the alert ...
1
vote
0answers
17 views
UIView can't move after masking image
I have a UIView with a UIImage property. I am masking that image and adding it to the UIView. Once I have clipped the mask to the image my gestures no longer work.
Masking Code:
CGContextRef ctx = ...
0
votes
0answers
25 views
Input data cannot be processed in the non-chronological order - Error being thrown from WinRT
I am currently using the below code for detecting gestures
var inputManager = (function () {
var that = {};
var gr;
var canvas;
var manipulating = false;
...
0
votes
0answers
32 views
Gesture Recognizer memory usage
I am adding several different swipe gestures to my app and I'm wondering if it would be better to just add one and query it for how many fingers, direction, etc.
By adding several distinct gesture ...
1
vote
3answers
59 views
Doubble Tapped Gesture Not Working
I have an ImageView in that ImageView i displayed some images but when i tapped 2 times on that images i will not get the proper events.
this method not called.
- ...
0
votes
0answers
21 views
Detect UILongPressGestureRecognizer fail event
I have several UIView contained inside 2 UIScrollView (vertical, horizontal) and I would like to implement a long press gesture in the former.
CocoaTouch UILongPressGestureRecognizer correctly ...
0
votes
1answer
36 views
UISwipeGestureRecognizer on view - If a touch is inside a UITableViewCell how to pass it to the cell?
I added a UISwipeGestureRecognizer to my view which changes the content of the view depending on the direction the user swipes(left or right). If a user swipes in a UITableViewCell though, the touch ...
1
vote
1answer
28 views
Situation in which a hitTest-confirmed view with a gesture recognizer won't receive the event?
`I've got view with a UIImageView as a subview. The main view has a single tap GestureRecognizer on it that works 99% of the time.
Every once in a while, the gesture recognizer seems to fail, and the ...
0
votes
2answers
27 views
UIGestureRecognizer Crash
I am add to put a swipe up gesture to an image, but when swiped, app craches with BAD_EXEC error.
This is what I have:
.h file:
@interface MyViewController : UIViewController ...
0
votes
1answer
15 views
UIGestureRecognizerDelegate and gestures on iOS5
I have a very strange problem with gestures on iOS5. I have a class that inherits from the UIControl. I implement two GestureRecognizers: UITapGestureRecognizer and UILongPressGestureRecognizer. ...
0
votes
2answers
43 views
How to use UIGestureRecognizers for Tap, Pinch, and Rotate on multiple UIViews or UIImageViews
I don;t know how to handle this :-/
I just need to add stickers on an image. App will conatins stickers like smilies, hearts (images) on selecting the particular sticker it will be added to main ...
0
votes
4answers
100 views
How to connect two buttons( dots) with a line in iOS? [duplicate]
I want to make a project in which I have to touch one dot and connect it with another dot and after connect it to another dot. When I connect one dot with another dot the line will create between ...
0
votes
1answer
38 views
How do I make a UIImageView darker when highlighted (tapped)?
I have a UIImageView that shows a picture. When tapped and held, I'd like it to darken as long as the user has their finger over the imageview. Basically, I want it to act like a UIButton.
I ...
0
votes
2answers
42 views
UITapGestureRecognizer not calling it's target-action method [duplicate]
For some reason, my UITapGestureRecognizer is not calling it's method when I tap a UIButton. What's really weird is that I used breakpoints in Xcode to make sure that the ...
1
vote
3answers
73 views
How to detect swipe direction, touch position, etc?
If I wanted to build an app that incorporated very basic swipe detection, how could I determine swiping zones on the user view? For example, if programming a playable guitar, would it be possibly to ...
1
vote
0answers
27 views
Zooming on UICollectionView - locationInView returning strange values
I am trying to implement a zooming effect on a UICollectionView. In order to get the desired effect, I want to do two things:
Scale the layout effectively
Ensure that the the scaling 'stretches out' ...
0
votes
1answer
18 views
IOS how different put down two fingers at one time and put down two fingers one by one
On IOS what is the difference between putting down two fingers at one time and putting down two fingers one by one?
Can I use UIGesturerecognizer to detect different touch-events? And how do I tell ...
0
votes
0answers
8 views
Enable recyleBin for LongpressGesture
I have imageView inside view. When i use UILongPressGesture, i need to enable recyleBin and drag my image to that recyleBin. How to do that?
code:
UILongPressGestureRecognizer ...
0
votes
0answers
41 views
Remove overlay image in cameraview
I have imageview under scrollview. In imageview having images. When i click particular image from scrollview, the image is appear overlay of cameraview. I used doubleTap for removing overlay image. ...
0
votes
1answer
34 views
UIGestureRecognizer “lost focus”?
I'm trying to figure out how to call an action after the UIGestureRecognizer has detected the gesture, when it "loses focus" (the user lifts their finger off the screen).
So basically, if a user ...
1
vote
3answers
45 views
UIButton and Swipe Gesture
I have a UIView with two UIButtons on each side (left and right) and a UIImageView in the center. A tap on either button will change the UIImageView and that works. I want the ability swipe across ...
0
votes
1answer
19 views
UITapGestureRecognizer not recognized for recently grown subview
I have a UIView "A" which contains another UIView "B". The B view is initially not seen (alpha = 0), then when a certain action happens in A, such as a button being pressed, a short animation sees B ...
1
vote
1answer
64 views
UIButton detect press and hold, along with “gesture recognizer”?
I'm trying to figure out how to detect a press and hold, as well as a gesture recognizer on a UIButton.
I did search around and didn't find exactly what I was looking for.
Here is a quick gif to ...
0
votes
1answer
46 views
iOS Animation Block Gesture Recognizer
I have a UICollectionView containing a number of cells containing views which can drag/dropped out of the collection view into a different view that is outside the collection view. This process works ...
0
votes
2answers
29 views
detect from which recognizer a gesture is coming
I have 2 views: view with tag 1 and view with tag 2.
Each view has two gesture recognizers.
CGRect tempRect=CGRectMake(0, 0, 100, 100);
for (int i=1; i<=2; i++) {
UIView *tempView=[[UIView ...
1
vote
2answers
54 views
iOS - Gesture Recognizer translationInView
I use the following line of code in a pan gesture recognizer:
CGPoint translation = [sender translationInView:self.view];
If I move the associated processing to a long press gesture recognizer, ...
-3
votes
2answers
52 views
iOS - Multiple events on one button
Quite a newbie here.
I have 36 buttons connected to one action for the event Touch Up Inside. The action differentiates them by their tag. Now, when the same button is interacted with in a different ...
0
votes
1answer
37 views
Attaching UIGestureRecognizers to encapsulated UIViews
I have an odd issue with a UITapGestureRecognizer whereby I always end up with a crash or exception thrown (unrecognised selector) when its action is to be invoked. I have used gesture recognisers ...




