Top "Uipangesturerecognizer" questions

UIPanGestureRecognizer is a concrete subclass of UIGestureRecognizer that looks for panning (dragging) gestures.

Intercepting pan gestures over a UIScrollView breaks scrolling

I have a vertically-scrolling UIScrollView. I want to also handle horizontal pans on it, while allowing the default vertical scroll …

ios ios5 uiscrollview uigesturerecognizer uipangesturerecognizer
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 …

ios uiview uigesturerecognizer uiviewanimation uipangesturerecognizer
How to programmatically send a pangesture in swift

I have a view that has panGesture functionality, but I need to send a pan-gesture from one point to another …

ios swift animation uipangesturerecognizer
How can I detect the scroll direction from the UICollectionView?

I have a UICollectionView. I want to detect scroll direction. I have a two different animation style for scroll down …

ios objective-c uicollectionview uigesturerecognizer uipangesturerecognizer
ios UIPanGestureRecognizer pointer position

UIPanGestureRecognizer *panRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(pan:)]; [self addGestureRecognizer:panRecognizer]; - (void)pan:(UIPanGestureRecognizer *)gesture { NSLog(@"%f", [gesture …

ios uipangesturerecognizer
How to get current touch point and previous touch point in UIPanGestureRecognizer method?

I am new to iOS, I am using UIPanGestureRecognizer in my project. In which I have a requirement to get …

ios objective-c uipangesturerecognizer uitouch touchesbegan
UIPanGestureRecognizer conflict with scrollview

I'm trying to add a pan gesture recognizer to a view containing a scrollview, but I guess I've problems with …

ios uiscrollview uigesturerecognizer uipangesturerecognizer
How to restrict a moveable view by Pan gesture

I have a UIImageView which is moveable via a pan gesture. UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)]; […

ios ios6 uiimageview orientation uipangesturerecognizer
unexpected nil window in _UIApplicationHandleEventFromQueueEvent, _windowServerHitTestWindow

I am trying to set up an edge swipe gesture in iOS 8 on iPad but getting and error that seems …

ios objective-c ipad ios8 uipangesturerecognizer
How to add UIPanGestureRecognizer to UIScrollView subviews

I am adding subviews to a UIScrollView and then I add UIPanGestureRecognizer to these subviews. Everything works fine but now …

iphone ios uiscrollview uipangesturerecognizer