Top "Uipangesturerecognizer" questions

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

How do I determine the direction (up or down) of a UIPanGesture?

My goal is to set the iPhone's brightness with up or down pan gestures. If there is a simple way …

uipangesturerecognizer screen-brightness
How to use UIGestureRecognizerDelegate?

My Setup I'm trying to replicate Google Now's card interface. I have a UIView which is a subview of (inside) …

ios swift uiview uiscrollview uipangesturerecognizer
How to use pan gesture and a swipe gesture alternatively on the same view?

I have a view that contains a counter. I have implemented two different gesture recognizers, a UISwipeGesture to increase the …

ios swift uigesturerecognizer uipangesturerecognizer uiswipegesturerecognizer
Making use of velocityInView with UIPanGestureRecognizer

I have a custom slider-type object, that I wish to make more usable. Currently I use UIPanGestureRecognizer and translationInView to …

iphone objective-c uipangesturerecognizer
custom interactive transition animation

I want to implement an interactive transition between two view controllers. I would like it to be a modal or …

ios swift swift3 uipangesturerecognizer
UIPanGestureRecognizer limit to coordinates

I added to my main UIView a subview (called panel) and i added gestureRecognizer to it because i want it …

objective-c uiview uipangesturerecognizer
Is it possible to do an edge swipe in iOS simulator?

iOS 7 provides for a UIScreenEdgePanGestureRecognizer which detects swipes in from edges of the screen. Can this gesture be simulated using …

xcode ios-simulator ios7 uipangesturerecognizer
Detect collision of two UIView's in swift

I have two UIViews on my ViewController. I added panGesture to first view and when i start moving this view …

ios collision-detection uipangesturerecognizer
Gestures Conflict on UITableView swipe to delete iOS

I have a problem in my gesture recognizers. My goal is to implement using swipe to delete in my table …

ios xcode uitableview uipangesturerecognizer