Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a little problem with the UIPanGestureRecognizer. The Recognizer does not report the UIGestureRecognizerStateEnded state if the user panned to the top left (means negative x and y directions)

The state changes to UIGestureRecognizerStateEnded if any direction is positive when the user lifts his finger, but it just ceases to report actions if both directions are negative or zero.

This is bad because i hide some overlay views as long as the user drags something around and those views do not return in failure case.

Of course I could setup a NSTimer to display the overlay after some time automatically again but i can see no obvious error in my code and I want it clean.

Is there something i missed? Is it an Apple Bug?

Initialization is like this:

pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panRecognized:)];
[self addGestureRecognizer:pan];
[pan release];

The handling function looks like this:

- (void)panRecognized:(UIPanGestureRecognizer *)gestureRecognizer {
    switch ([gestureRecognizer state]) {
        case UIGestureRecognizerStateBegan:
            // fade some overlaying views out
            break;
        case UIGestureRecognizerStateEnded:
        case UIGestureRecognizerStateCancelled:
        case UIGestureRecognizerStateFailed:
            // fade in the overlays
            break;
        default:
            break;
    }

    // handle panning
}
share|improve this question
This has happened to me in the past when I accidentally removed/moved the gesture recognizer to a different view. It will simply go silent as soon as you do. This is not the case in your case? – Kalle Jan 2 at 8:03

1 Answer

The best advice for you is try to do like this:

- (void) panRecognized:(UIPanGestureRecognizer*)recognizer {
    CGPoint translation = [recognizer translationInView:recognizer.view];
    if (recognizer.state == UIGestureRecognizerStateChanged)
        {
             // your actions here
        }
}

So, you could use translation.x or translation.y for anything (negative values reported too, of course).

Best regards.

share|improve this answer
What syntax is that? you have no if, only an else if – Kronusdark Feb 25 at 14:28
Yes, sure. Wrong code block) – Viktor_coder Feb 28 at 13:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.