iOS 9.0 在 UITouch
类上添加了新属性 force
。对于新 iPhone (6S),这可以获取用户手指压力的值。
force
属性的值似乎设置在 0 到 6.66667 之间。
iOS 9 还添加了 peek and pop 功能 - 当用户在某些控件上应用特定的手指压力级别时,会触发程序操作。
我的问题是:就 UITouch
的 force
属性的值而言,这些压力级别(用于 peek 和 pop)是多少?
换句话说,我需要将 force
属性的阈值设置为什么值,以要求用户应用与使用“peek”(或弹出)时相同的手指压力水平) 功能?
您可以尝试使用以下函数来观察 force
的值。看来,对于 peek,force
值是 1.33(标准化力 = 0.20),对于 pop,force
值是 5.0(标准化力 = 0.75)。 force
级别,它触发 UIViewControllerPreviewingDelegate
方法 (UIViewController *)previewingContextid
进行 peek .
- (void)touchesMovedNSSet<UITouch *> *)touches withEventUIEvent *)event
{
[super touchesMoved:touches withEvent:event];
UITouch *touch = [touches anyObject];
CGFloat maximumPossibleForce = touch.maximumPossibleForce;
CGFloat force = touch.force;
NSLog(@"***** force value : %f", force);
CGFloat normalizedForce = force/maximumPossibleForce;
NSLog(@"Normalized force : %f", normalizedForce);
if (normalizedForce > 0.75)
{
// Pop
}
else if (normalizedForce > 0.20)
{
// Peek
}
}
关于ios - 什么是新 iPhone 上的偷看和流行力量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35097830/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |