1

有没有办法检测你正在触摸哪些像素,同时将你的手/手指放在屏幕上(iphone/ipad)?基本上画出我手的形状(不像指纹那样详细)。

谢谢。

4

2 回答 2

0

如果您正在寻找触摸的坐标点,请使用以下代码。

- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

        UITouch *touch = [touches anyObject];
        CGPoint currentTouchPosition = [touch locationInView:self.view];
        NSLog(@"%f,%f",currentTouchPosition.x,currentTouchPosition.y);
    }
于 2012-08-10T11:11:47.213 回答
0

遗憾的是,您想要实现的目标是不可能的。当前的设备最多只能检测 11 次触摸作为更多信息在这篇文章中)。没有办法获得真正的触摸区域或真正的触摸像素。

于 2012-08-10T11:16:28.697 回答