有了SOS8,你可以查阅<代码>touch.majorRadius,即,在10.45多处增长,与Milliimeters触角地区的半径成比例。 联系人:major Radius Tolerance是第二大财产,可与SOS8使用,并准确反映触角线线信息。 在我的测量中,它始终是<代码>major Radius级规模的一半。
在“iPad Pro”上,感触器比旧的“iPad”模式报告门槛值低的“Amppencil”的信号更敏感三倍。 据报,Pencil的 touch线半衰期为0.25,而即使是最小的inger子接触也会报告20.84或更多。
在您的《意见》方法中采用这一方法:
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
// Regular multitouch handling.
[super touchesBegan:touches withEvent:event];
CGPoint center = [touch locationInView:self];
NSLog(@"Touch detected at %6.1f | %6.1f", center.x, center.y);
CGFloat radius = [touch majorRadius];
NSLog(@"Radius = %5.1f; lower limit = %5.1f; upper limit = %5.1f", radius, radius-touch.majorRadiusTolerance, radius+touch.majorRadiusTolerance);
}