私は、UIViewを含むscrollviewを持っています。ここにはテキストのラベルがあります。私が望むのは、タップジェスチャー認識機能を追加してビューを解除することです。UIGesture特定の領域への認識器
私は、次の試してみました:
/* Tap */
UITapGestureRecognizer *singleFingerTap =
[[UITapGestureRecognizer alloc] initWithTarget:self
action:@selector(handleSingleTap)];
singleFingerTap.numberOfTapsRequired = 1;
[self.mainScroll addGestureRecognizer:singleFingerTap];
self.containerView = [UIView new];
self.containerView.backgroundColor = [UIColor whiteColor];
[self.mainScroll addSubview:self.containerView];
しかし、コールバックの出会いをユーザーが(テキスト付きビューを含む)、スクロールの任意の場所をタップすると。それを防ぐ方法は?
サンプルコードはいいと思います。 –