ios,collectionView
2020-09-16 本文已影响0人
若风_412d
截屏2020-09-16 下午1.10.59.png
链接:https://github.com/kuah/SCAdView
链接:https://github.com/kuah/SCAdView
collectionView设置默认值
self.collectionView.dataSource = self;
self.collectionView.decelerationRate = 0;
self.collectionView.scrollEnabled = builder.scrollEnabled;
//设置默认值第一个,位置就在设置代理的地方。
NSIndexPath *to_indexPath =[NSIndexPath indexPathForRow:1 inSection:0];
[self.collectionView scrollToItemAtIndexPath:to_indexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:NO];