Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a UIPopover being called when the UILongPressGesture is being fired. UIPopOver appears, displays fine, all is okay with the world.

I want the UIPopover to disappear when the gesture is ended either by the finger lifting or moving. I do this by specifying:

if (longPress.state == UIGestureRecognizerStateEnded) {

        [thePopover dismissPopoverAnimated:YES];
        NSLog(@"you let off");
    }

This doesn't work. NSLog fires but dismissPopover doesn't. Stranger enough, if I build a method that does call dismissPopover and wrap it in a performSelector: withObject: afterDelay: , that works fine unless I put it within

if (longPress.state == UIGestureRecognizerStateEnded) {

        [self performSelector:@selector(releasePopover:) withObject:thePopover afterDelay:2.0];
        NSLog(@"you let off");
    }

Any thoughts as to why this would be?

share|improve this question
is thePopover nil in this area of the method? That's really the only thing I can think of that would make any sense. – Carter Allen Feb 20 '11 at 18:33
Nope, if(thePopover == nil) doesn't fire… Good thought though. – Jacob Feb 21 '11 at 3:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.