0

我有一个 UIView 自定义类(m、h、xib),上面有两个按钮。如果我点击它,这个视图应该会收到触摸,所以我实现了一个 UITapGestureRecognizer:

UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:customElementView action:@selector(customElementPressed:)];
[customElementView addGestureRecognizer:tapGesture];
[tapGesture release];

这个视图上什至有两个按钮,每个按钮都有一个在 touchUpInside 动作中实现的 IBAction。

我的问题是这两个按钮没有收到动作,每次我点击它们时,都会调用 UIView 的 TapGesture 方法。我怎样才能以某种方式“强制”这些按钮来捕捉水龙头?

4

1 回答 1

1

请在发布新问题之前使用搜索功能。搜索 UITapGestureRecognizer 和 UIButton,会给你答案:

https://stackoverflow.com/a/3348532/312312

或者您可能想先尝试这种方法:

https://stackoverflow.com/a/8891030/312312

于 2012-10-14T09:52:23.713 回答