在UICollectionView中滚动时绕过UIScrollViewDelegate

时间:2018-11-22 09:52:41

标签: ios uiscrollview uicollectionview

我有一个UICollectionView,它是UIScrollView的子视图。当UICollectionView内部滚动时,是否可以绕过UIScrollViewDelegate?

1 个答案:

答案 0 :(得分:2)

您可以像下面一样签入UIScrollViewDelegate方法,并绕过该方法内的实现。

示例:

func scrollViewDidScroll(_ scrollView: UIScrollView) {

        guard scrollView != yourCollectionView else{

            return
        }

        //Your implementations goes here
    }