美文网首页iOS
ios,collectionView

ios,collectionView

作者: 若风_412d | 来源:发表于2020-09-16 13:15 被阅读0次
    截屏2020-09-16 下午1.10.59.png
    链接: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];
    

    相关文章

      网友评论

        本文标题:ios,collectionView

        本文链接:https://www.haomeiwen.com/subject/fqlwsktx.html