有没有办法检测你正在触摸哪些像素,同时将你的手/手指放在屏幕上(iphone/ipad)?基本上画出我手的形状(不像指纹那样详细)。
谢谢。
如果您正在寻找触摸的坐标点,请使用以下代码。
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint currentTouchPosition = [touch locationInView:self.view];
NSLog(@"%f,%f",currentTouchPosition.x,currentTouchPosition.y);
}
遗憾的是,您想要实现的目标是不可能的。当前的设备最多只能检测 11 次触摸作为点(更多信息在这篇文章中)。没有办法获得真正的触摸区域或真正的触摸像素。