我的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
我正在尝试增加滚动条的宽度,并添加一个圆形滚动条。我要用一张图片来画这个圆圈吗?我没有看到UIScrollView的任何属性或方法来更改滚动条的宽度
我尝试了以下几种方法:
UIScrollView *myScroll = [[UIScrollView alloc] init];
myScroll.frame = self.view.bounds; //scroll view occupies full parent view!
//specify CGRect bounds in place of self.view.bounds to make it as a portion o