我有以下问题:
创建 UIView,添加到屏幕。在这个 UIView 的代码中,我说要移动框架本身,这里是代码:
self.frame = CGRectMake(myLeft, myTop, myWidth, myHeight);
但随后多点触控不起作用,在 beginTouch 事件中我得到 [touches count] = 0; 当我不移动框架时,多点触控工作。问题是什么 ?
multipleTouchEnabled = true - 没有帮助我,它仍然无法正常工作。
我有以下问题:
创建 UIView,添加到屏幕。在这个 UIView 的代码中,我说要移动框架本身,这里是代码:
self.frame = CGRectMake(myLeft, myTop, myWidth, myHeight);
但随后多点触控不起作用,在 beginTouch 事件中我得到 [touches count] = 0; 当我不移动框架时,多点触控工作。问题是什么 ?
multipleTouchEnabled = true - 没有帮助我,它仍然无法正常工作。