我的ReusableCollectionView里有一个圆形的Imageview。当我向下滚动我的collectionView时,我会缩放我的Imageview,一旦它滚动回原来的位置,我就会将它缩放到原来的大小。
func scrollViewDidScroll(_ scrollView: UIScrollView) {
// Exit early if swiping up (scrolling down)
if scrollView.contentOffset.y > 0 { return }
// this is just a demo method