菜鸟教程小白 发表于 2022-12-12 12:11:03

ios - 如何在启用对角 setContentOffset 滚动动画的同时禁用手动对角滚动


                                            <p><p>我正在使用 Collection View 。
虽然 directionLockEnabled 可以设置为 YES,但对角滚动仍然是启用的。</p>

<p>所以我在某处找到了解决方案:</p>

<pre><code>- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{
    self.offset = self.collectionView.contentOffset;
}

// control scroll to only horizontal &amp; vertical
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    CGFloat deltaX = ABS(self.offset.x - self.collectionView.contentOffset.x);
    CGFloat deltaY = ABS(self.offset.y - self.collectionView.contentOffset.y);
    if (deltaX != 0 &amp;&amp; deltaY != 0) {
      if (deltaX &gt;= deltaY) {
            self.collectionView.contentOffset = CGPointMake(self.collectionView.contentOffset.x, self.offset.y);
      }
      else    {
            self.collectionView.contentOffset = CGPointMake(self.offset.x, self.collectionView.contentOffset.y);
      }
    }
}
</code></pre>

<p>但是副作用是当我用 x, y > 0 调用时</p>

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

<p>由于上面的代码块,它根本不滚动。</p>

<p>如何处理?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 Swift 中禁用手动对角滚动:</p>

<pre><code>func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
    self.offset = scrollView.contentOffset      
}

func scrollViewDidScroll(_ scrollView: UIScrollView) {
    let deltaX = abs(self.offset.x - self.collectionView.contentOffset.x)
    let deltaY = abs(self.offset.y - self.collectionView.contentOffset.y)

    if deltaX != 0 &amp;&amp; deltaY != 0 {
      if deltaX &gt;= deltaY {
            self.collectionView.contentOffset = CGPoint(x: self.collectionView.contentOffset.x, y: self.offset.y)
      } else {
            self.collectionView.contentOffset = CGPoint(x: self.offset.x, y: self.collectionView.contentOffset.y)
      }
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在启用对角 setContentOffset 滚动动画的同时禁用手动对角滚动,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26545983/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26545983/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在启用对角 setContentOffset 滚动动画的同时禁用手动对角滚动