// 要求的点击次数,默认为0次
@property (nonatomic) NSUInteger numberOfTapsRequired; // Default is 0.
// 要求的手指数量,默认为1个
@property (nonatomic) NSUInteger numberOfTouchesRequired __TVOS_PROHIBITED;
// 最小的按压持续时间,默认是0.5秒
@property (nonatomic) CFTimeInterval minimumPressDuration;
// 允许识别过程中手指移动的最大距离,默认是10
@property (nonatomic) CGFloat allowableMovement; // Default is 10. Maximum movement in pixels allowed before the gesture fails. Once recognized (after minimumPressDuration) there is no limit on finger movement for the remainder of the touch tracking