我的应用程序工作正常,今天我开始收到这些随机错误
no visible @interface for 'UITouch' declares the selector 'locationInView'
我没有得到,因为它在今天之前工作得非常好,今天才开始这样做我的代码是:
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchPoint = [touch locationInView:self.view];
我拥有我需要的所有进口产品&我甚至检查了UITouch类,它确实有" locationInView"方法宣布他们所以我不知道为什么会发生这种情况我会很感激我能得到的任何帮助,请&谢谢!
答案 0 :(得分:1)
只需替换
- (void)touchBegan:(UITouch *)touch withEvent:(UIEvent *)event {
与
- (void)touchBegan:(CCTouch *)touch withEvent:(CCTouchEvent *)event {