UIView * blueView = [[UIView alloc] initWithFrame:CGRectMake(10, 10, 100, 100)];
blueView.backgroundColor = [UIColor blueColor];
[scrollView addSubview:blueView];
scrollView.contentSize = CGSizeMake(1500, 2000);

我可以在多数scrollView中拖动滚动很好,但是在blueView中开始触摸时拖动不起作用。

如何在UIView(在本例中为blueView)中开始的触摸滚动UIScrollView?

blueView不是第一响应者,blueView的下一个响应者是scrollView等。

似乎很基本,但是我现在停留了一段时间。我想念什么?谢谢。

最佳答案

尝试设置blueView.userInteractionEnabled = NO

10-08 15:33