链接: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];
网友评论