菜鸟教程小白 发表于 2022-12-12 13:37:58

ios - 如何以编程方式模拟 "pinch out"手势?


                                            <p><p>我正在开发一个 iOS 应用程序。</p>

<p>我添加了一个 UIPinchGestureRecognizer 来监听捏合 Action 。</p>

<pre><code>[addGestureRecognizer:[ initWithTarget:self action:@selector(handlePinchOutGesture:)]];

-(void)handlePinchOutGesture:(UIPinchGestureRecognizer*)recognizer {
    if (recognizer.state == UIGestureRecognizerStateBegan) {
      // Do something

    } else if (recognizer.state == UIGestureRecognizerStateChanged) {
      // Do something

    } else {
       // Do something

    }
}
</code></pre>

<p>但是,我还想添加一个 UITapGestureRecognizer,以便在用户点击项目时具有相同的效果。</p>

<p>有没有办法以编程方式模拟“捏出”手势?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 iOS 上很难合成一个触摸(或多点触摸)事件:你必须使用非公共(public) API,所以你很有可能在 Apple 审核期间被拒绝。</p>

<p>这是一个演示如何在 iPhone 上合成触摸事件的链接</p>

<p> <a href="http://www.cocoawithlove.com/2008/10/synthesizing-touch-event-on-iphone.html" rel="noreferrer noopener nofollow">http://www.cocoawithlove.com/2008/10/synthesizing-touch-event-on-iphone.html</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何以编程方式模拟&#34;pinch out&#34;手势?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18276239/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18276239/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何以编程方式模拟 &#34;pinch out&#34;手势?