我想知道是否有人知道可以识别ipad上的接触点的距离。像Appmates(http://www.appmatestoys.com/)这样的产品可以创建一个电容式标记,但是你有多接近/你可以创建多少复杂的标记?
此外,我已经阅读了整体有10个,有没有办法解决这个限制?
答案 0 :(得分:0)
//this code used to find touch point in screen
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *myTouch = [touches anyObject];
point = [myTouch locationInView:self.view];
NSLog(@"%f,%f",point.x, point.y);
}