UIScreenEdgePanGestureRecognizerを設定するときにUIRectEdgeRightなどを指定すると、実際のポイント値が何であるかを把握しようとしています。
そのような認識エンジンにログオンするためのプロパティがないため、UIScreenEdgePanGestureRecognizer について何も単純に NSLog できないようです。
それに応じて、このエッジから別の認識エンジンを配置したいので、基本的に、この認識エンジンがトリガーされるタイミングとトリガーされないタイミングを決定しようとしています。
提供されたヘルプ/ヒントに感謝します
/*! 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