菜鸟教程小白 发表于 2022-12-12 22:15:37

IOS - SWRevealController - 随机滑动问题


                                            <p><p>我已将 <code>SWRevealViewcontroller</code> (<a href="https://github.com/John-Lluch/SWRevealViewController" rel="noreferrer noopener nofollow">https://github.com/John-Lluch/SWRevealViewController</a>) - 实现到我们的 <code>IOS</code> 应用程序中,我注意到一个间歇性滑动问题。</p>

<p>解释一下-基本设置如下</p>

<p> <img src="/image/pDbel.png" alt="enter image description here"/> </p>

<p>两个左右滑动屏幕远离主屏幕,最初是一个<code>uitableviewcontroller</code>。</p>

<p>我的问题是 - 偶尔如果您向上和向下滑动表格 View- 左右滑动被忽略,似乎用于 <code>tableviewcontroller</code> 的滑动事件和<code>revalview</code>。 </p>

<p>不确定是否有其他人遇到过这种情况,或者它是否只是具有多个滑动事件的 <code>IOS</code> 错误 - 但如果其他人遇到过类似问题或有任何建议,请告诉我。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我也注意到了这一点,尤其是在滑动删除表格 View 行时。</p>

<p>我认为 SWRevealViewController 的平移手势识别器基本上正在吃掉我在尝试删除行时看到的滑动手势。</p>

<p>我还不完全确定,但我认为解决方案可能是添加这个</p>

<pre><code>- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
    return YES;
}
</code></pre>

<p>到 <code>SWRevealViewController</code> 类以及其他 <code>UIGestureRecognizerDelegate</code> 方法。</p>

<p>我仍在做一些测试,看看这是否真的会破坏任何东西,但我希望其他人查看此修复/解决方案,看看是否有需要注意的问题。</p>

<p><strong>编辑</strong>:我还有一个 <a href="https://github.com/frankfle/SWRevealViewController" rel="noreferrer noopener nofollow">fork</a>我在其中扩展了委托(delegate)的 SWRevealViewController,以便您可以自己指定它。我还创建了一个拉取请求,所以我们会看看这个修复/增强是否有值(value)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于IOS - SWRevealController - 随机滑动问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23567861/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23567861/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: IOS - SWRevealController - 随机滑动问题