UIView * blueView = [[UIView alloc] initWithFrame:CGRectMake(10, 10, 100, 100)];
blueView.backgroundColor = [UIColor blueColor];
[scrollView addSubview:blueView];
scrollView.contentSize = CGSizeMake(1500, 2000);
我可以在大多数scrollView中拖动滚动很好,但是在蓝色触摸开始时拖动不起作用。
如何在UIView中启动的触摸(在本例中为blueView)滚动UIScrollView?
blueView不是第一响应者,blueView的下一个响应者是scrollView等。
看起来非常基本,但我现在已经停留了一段时间。我错过了什么? THX。
答案 0 :(得分:1)
尝试设置blueView.userInteractionEnabled = NO
。