我将 UIScrollView 子类化并将其超类设置为委托,如下面的片段所示,即使我设置了 contentSize:,委托方法也没有被调用。
popView = [[PopView alloc]initWithFrame:CGRectMake(35, y, 250, 40)];
popView.answerDelegate = self;
popView.delegate = self;
popView.contentSize = CGSizeMake(750, 40);
popView.scrollEnabled = YES;
[self addSubview:popView];
还有一件事,'PopView' 是 UIScrollView 的子类。