サブラスを停止する方法を知りたいoUIScrollViewが正しく機能していない:
- (void) touchesShouldBegin:(NSSet *)touches withEvent:(UIEvent *)event inContentView:(UIView *)view {
if ([touches count] == 2) {
[super touchesShouldBegin:[touches anyObject] withEvent:event inContentView:view];
}
else {
//How do I stop it completely from using one touch?
}
}
何もしたくない他のすべてに2回触れたときにのみ動作させたい。または、elseステートメントのタッチをUIViewに渡す方法を教えていただければ、さらに良いでしょう。
UntitledViewController.otherView
これを行う方法を教えていただければ、とても嬉しいです。