我使用下面的代码来检测物体上的触摸
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSArray *allTouches = [touches allObjects];
for (UITouch *touch in allTouches)
{
NSLog(@"TOUCH DETECT");
}
}
但未触发
欢迎任何评论
答案 0 :(得分:5)
什么样的物体?只为UIResponder子类调用touchesBegan:withEvent:
。
此外,如果是UIView,请确保userInteractionEnabled
为YES。