0

当您设置 UIScreenEdgePanGestureRecognizer 时,我试图弄清楚当您指定 UIRectEdgeRight 等时实际的点值是多少。

看来我不能简单地 NSLog 任何关于 UIScreenEdgePanGestureRecognizer 的信息,因为没有属性可以登录这样的识别器。

我基本上是在尝试确定该识别器何时会触发和不会触发,因为我想将另一个识别器相应地放置在远离该边缘的位置。

感谢您提供的任何帮助/提示

/*! 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
4

1 回答 1

1

我通过反复试验发现 UIScreenEdgePanGestureRecognizer 将从其各自的边缘触发 20 点。

于 2014-02-26T03:49:19.060 回答