0

我在我的项目中使用 openflow 库。要求当我点击 openflow 中显示的图像时,将打开另一个视图控制器。

我的问题是我制作了一个tapGestureRecognizer,但它是否会在该视图中的所有按钮和其他所有东西上被调用。我希望在打开流上点击图像时启动 tapGestureRecognizer,没有别的地方。请帮助我。我被困在这里。提前致谢!

4

1 回答 1

1

仅将点击手势添加到您想要的视图中。

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGesture:)];

//openFlowImageView is the view that you want the tap to work on.
[openFlowImageView addGestureRecognizer:tap];
[tap release];
于 2011-06-09T15:30:26.960 回答