我有一个touchesBegan:
工作正常的方法。但是我最近向我的 UIViewController 添加了一个 UIView (一个按钮),现在该按钮没有注册水龙头,但我的touchesBegan:
方法是。
我怎样才能告诉我的touchesBegan:
方法来避免按钮?
这是我目前的touchesBegan:
方法:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"touches began");
UITouch *touch = [touches anyObject];
switch ([touch tapCount])
{
case 1:
break;
case 2:
if(something)
[doing something];
break;
default:
break;
}
}