菜鸟教程小白 发表于 2022-12-13 14:02:18

ios - 什么是新 iPhone 上的偷看和流行力量?


                                            <p><p>iOS 9.0 在 <code>UITouch</code> 类上添加了新属性 <code>force</code>。对于新 iPhone (6S),这可以获取用户手指压力的值。</p>

<p><code>force</code> 属性的值似乎设置在 0 到 6.66667 之间。</p>

<p>iOS 9 还添加了 peek and pop 功能 - 当用户在某些控件上应用特定的手指压力级别时,会触发程序操作。</p>

<p>我的问题是:就 <code>UITouch</code> 的 <code>force</code> 属性的值而言,这些压力级别(用于 peek 和 pop)是多少?</p>

<p>换句话说,我需要将 <code>force</code> 属性的阈值设置为什么值,以要求用户应用与使用“peek”(或弹出)时相同的手指压力水平) 功能?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以尝试使用以下函数来观察 <code>force</code> 的值。看来,对于 peek,<code>force</code> 值是 1.33(标准化力 = 0.20),对于 pop,<code>force</code> 值是 5.0(标准化力 = 0.75)。 <code>force</code> 级别,它触发 <code>UIViewControllerPreviewingDelegate</code> 方法 <code>(UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location</code> 进行 peek .</p>

<pre><code>- (void)touchesMoved:(NSSet&lt;UITouch *&gt; *)touches withEvent:(UIEvent *)event
{
    ;

    UITouch *touch = ;

    CGFloat maximumPossibleForce = touch.maximumPossibleForce;
    CGFloat force = touch.force;

    NSLog(@&#34;***** force value : %f&#34;, force);

    CGFloat normalizedForce = force/maximumPossibleForce;

    NSLog(@&#34;Normalized force : %f&#34;, normalizedForce);

    if (normalizedForce &gt; 0.75)
    {
      // Pop
    }
    else if (normalizedForce &gt; 0.20)
    {
      // Peek
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 什么是新 iPhone 上的偷看和流行力量?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35097830/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35097830/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 什么是新 iPhone 上的偷看和流行力量?