我有一个 UIView 自定义类(m、h、xib),上面有两个按钮。如果我点击它,这个视图应该会收到触摸,所以我实现了一个 UITapGestureRecognizer:
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:customElementView action:@selector(customElementPressed:)];
[customElementView addGestureRecognizer:tapGesture];
[tapGesture release];
这个视图上什至有两个按钮,每个按钮都有一个在 touchUpInside 动作中实现的 IBAction。
我的问题是这两个按钮没有收到动作,每次我点击它们时,都会调用 UIView 的 TapGesture 方法。我怎样才能以某种方式“强制”这些按钮来捕捉水龙头?