如何确定UIScreenEdgePanGestureRecognizer框架

时间:2014-02-26 01:02:57

标签: ios objective-c uigesturerecognizer uiedgeinsets

当您设置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

1 个答案:

答案 0 :(得分:1)

我通过反复试验得知,UIScreenEdgePanGestureRecognizer会从各自的边缘触发20分。