I'm trying to figure out what the actual point values are when you specify UIRectEdgeRight, etc. when you set up a UIScreenEdgePanGestureRecognizer.
It appears I cannot simply NSLog anything about the UIScreenEdgePanGestureRecognizer, as there's no property to log on such a recognizer.
I basically am trying to determine when this recognizer will and wont trigger, as I want to place another recognizer away from this edge accordingly.
Thank you for any help/tips provided
/*! This subclass of UIPanGestureRecognizer only recognizes if the user slides their finger
in from the bezel on the specified edge. */
NS_CLASS_AVAILABLE_IOS(7_0) @interface UIScreenEdgePanGestureRecognizer : UIPanGestureRecognizer
@property (readwrite, nonatomic, assign) UIRectEdge edges; //< The edges on which this gesture recognizes, relative to the current interface orientation
@end