为啥 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 的滚动方式,所以我在扩展中添加了 scrollViewWillBeginDragging
和 scrollViewWillEndDragging
函数。
然而,scrollViewWillBeginDragging
和 scrollViewWillEndDragging
也影响 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,为啥它受到保护?