标签: objective-c iphone iphone-sdk-3.0
以下是代码:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { if ([touches count] == 1) { // code } else { // code } }
当我在模拟器中使用Option键模拟双击时,代码总是选择if语句的第一部分,就好像只有1次触摸一样。
为什么我没有收到两个接触?
答案 0 :(得分:4)
在视图可以接受多点触控之前,需要将multipleTouchEnabled property设置为YES。
multipleTouchEnabled