菜鸟教程小白 发表于 2022-12-13 07:42:45

ios - 识别 UIScrollView 中的滑动手势


                                            <p><p>我正在尝试识别 UIScrollView 中的滑动手势,我使用下面的代码添加了 ScrollView ,并在我的 Storyboard中添加了滑动手势,并在识别手势时使用自定义转换。</p>

<p>.h 文件</p>

<pre><code>@interface PLProfileViewController : UIViewController {
    IBOutlet UIScrollView *scroller;
}
</code></pre>

<p>.m 文件</p>

<pre><code>- (void)viewDidLoad {
    ;
    ;
    ;
}
</code></pre>

<p> ScrollView 本身可以正常工作,但是自从添加了它之后,在工作之前工作的手势识别器都不再工作了。
你知道我该如何解决这个问题吗?</p>

<p>非常感谢您,</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>将 <code>UIGestureRecognizer</code> 添加到您的 <code>UIScrollView</code> 中,但也可以从 <a href="https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIGestureRecognizerDelegate_Protocol/index.html" rel="noreferrer noopener nofollow">UIGestureRecognizerDelegate</a> 实现以下方法:</p>

<pre><code>- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 识别 UIScrollView 中的滑动手势,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30595316/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30595316/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 识别 UIScrollView 中的滑动手势