菜鸟教程小白 发表于 2022-12-13 09:55:43

ios - 如何禁用 UICollectionView 的手势滑动


                                            <p><p>目前,我正在制作分页 UICollectionView。我想从 UICollectionView 禁用手势滑动效果,因为我要添加 UIPagerControl 来为分页 UICollectionView 设置动画。我不希望用户使用他们的手指移动到下一个屏幕而不是使用自定义 UIPageControl。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>从 UIScrollView 继承的 UICollection 可以通过这种方式禁用用户的滚动:</p>

<pre><code>myCollectionView.scrollEnabled = NO;
</code></pre>

<p>这是文档说明(<a href="https://developer.apple.com/library/ios/documentation/uikit/reference/uiscrollview_class/index.html#//apple_ref/occ/instp/UIScrollView/scrollEnabled" rel="noreferrer noopener nofollow">UIScrollView class reference</a>):</p>

<blockquote>
<p>When scrolling is disabled, the scroll view does not accept touch
events; it forwards them up the responder chain.</p>
</blockquote>

<p>使用 UIPageControl 时,您可以使用 UIScrollView 方法以编程方式设置 UICollectionView 中的位置:</p>

<pre><code>- (void)setContentOffset:(CGPoint)contentOffset
                animated:(BOOL)animated
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何禁用 UICollectionView 的手势滑动,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26889702/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26889702/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何禁用 UICollectionView 的手势滑动