无论如何,在将手/手指放在屏幕上(iphone / ipad)时,是否检测到您正在触摸的像素?基本上画出我的手的形状(不像指纹那样详细)。
感谢。
答案 0 :(得分: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);
}
答案 1 :(得分:0)
遗憾的是,你想要实现的目标是不可能的。目前的设备最多只能检测到11次触摸点(more info in this post)。无法获得真实触摸区域或真实触摸像素。