我正在创建一个scrollview,在其中我有可拖动的视图。问题是,scrollView调用中的视图的touchBegan:方法被延迟,如果移动快速完成,它们不会到达,有人能说我为什么?以下是我的一些代码:
//At the init method of my UIScrollView subclass
self.canCancelContentTouches = NO;
self.delaysContentTouches = NO;
self.delegate = self;
//At the init of the view in the content
self.userInteractionEnabled = YES;
self.multipleTouchEnabled = NO;
self.exclusiveTouch = YES;
我试图删除层次结构的UIScrollView并将其替换为不进行滚动的当前视图,并且一切正常,所以我确定UIScrollView会引发延迟。
还说我在iOS 6框架上编程