菜鸟教程小白 发表于 2022-12-12 10:51:27

ios - SWRevealViewController 平移手势识别器问题


                                            <p><p>我正在使用来自 John-Lluch 的 <code>SWRevealViewController</code>。我需要使用平移手势来查看侧边栏,并且我正在使用滑动来查看我的上一篇和下一篇文章。但是,只能检测到平移手势。 </p>

<p>更新:如果我禁用平移手势,我的滑动手势会起作用。 </p>

<p><strong>平移手势</strong></p>

<pre><code> ;
</code></pre>

<p><strong>滑动手势</strong></p>

<pre><code>UISwipeGestureRecognizer *left = [[ initWithTarget:self action:@selector(swipeLeft:)] autorelease];
left.direction = UISwipeGestureRecognizerDirectionLeft;

UISwipeGestureRecognizer *right = [[ initWithTarget:self action:@selector(swipeRight:)] autorelease];
right.direction = UISwipeGestureRecognizerDirectionRight;

;
;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>;

;
</code></pre>

<p>注意到区别了吗?将 SwipeGesture 实现为您的 .h 中的属性,或将其放入您的 .xib 并将其链接到您的 .h</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - SWRevealViewController 平移手势识别器问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24906318/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24906318/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - SWRevealViewController 平移手势识别器问题