为啥 scrollViewWillEndDragging 会影响 UICollectionView 和 UITableView?

Posted

技术标签:

【中文标题】为啥 scrollViewWillEndDragging 会影响 UICollectionView 和 UITableView?【英文标题】:Why is scrollViewWillEndDragging affecting a UICollectionView and UITableView?为什么 scrollViewWillEndDragging 会影响 UICollectionView 和 UITableView? 【发布时间】:2019-04-09 20:09:17 【问题描述】:

我在同一个视图控制器上使用 UITableView 和 UICollectionView。

我想改变 UICollectionView 的滚动方式,所以我在扩展中添加了 scrollViewWillBeginDraggingscrollViewWillEndDragging 函数。

然而,scrollViewWillBeginDraggingscrollViewWillEndDragging影响 UITableView,尽管它们不在同一个扩展中。

我该如何解决这个问题?有没有办法只选择 UICollectionView?

这是我的代码的简短版本:

extension ViewController: UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout 
    // This is where I put all of the UICollectionView code, including `scrollViewWillBeginDragging` and a `scrollViewWillEndDragging`

    func scrollViewWillBeginDragging(_ scrollView: UIScrollView) 
        // Why is the code in here affecting the UITableView?

    

    func scrollViewWillEndDragging(_ scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>) 
        // Same as with `scrollViewWillBeginDragging`

    



extension ViewController: UITableViewDelegate, UITableViewDataSource 
    // This is where I put all of the UITableView code, it's separate from the UICollectionView so why are `scrollViewWillBeginDragging` and `scrollViewWillEndDragging` affecting it?



【问题讨论】:

您可以在委托函数中查看scrollView的superview。例如:if let view = scrollview.superView, view == collectionView 类似这样的东西。 【参考方案1】:

这是因为

UITableViewDelegate 和 UICollectionViewDelegate 都继承自 UIScrollViewDelegate

所以你能做的就是

extension ViewController: UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout 
    // This is where I put all of the UICollectionView code, including `scrollViewWillBeginDragging` and a `scrollViewWillEndDragging`

    func scrollViewWillBeginDragging(_ scrollView: UIScrollView) 

        if scrollView is UICollectionView 
          // Add code here for collectionView
        
    

    func scrollViewWillEndDragging(_ scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>) 

        if scrollView is UICollectionView 
          // Add code here for collectionView
        
    


【讨论】:

我不知道 UITableViewDelegate 也继承自 UIScrollViewDelegate。现在它完全有道理。谢谢!

以上是关于为啥 scrollViewWillEndDragging 会影响 UICollectionView 和 UITableView?的主要内容,如果未能解决你的问题,请参考以下文章

为啥 DataGridView 上的 DoubleBuffered 属性默认为 false,为啥它受到保护?

为啥需要softmax函数?为啥不简单归一化?

为啥 g++ 需要 libstdc++.a?为啥不是默认值?

为啥或为啥不在 C++ 中使用 memset? [关闭]

为啥临时变量需要更改数组元素以及为啥需要在最后取消设置?

为啥 CAP 定理中的 RDBMS 分区不能容忍,为啥它可用?