美文网首页
CollectionView添加MJRefrsh的上拉加载,上拉

CollectionView添加MJRefrsh的上拉加载,上拉

作者: 雨雪霏霏why | 来源:发表于2019-06-04 13:36 被阅读0次

    1.上拉加载闪的问题,

    可以用
    [UIView performWithoutAnimation:^{
            [self reloadSections:[NSIndexSet indexSetWithIndex:0]];
       }];
    代替
     [self reloadData];
    

    2.上拉加载下移问题

    可以用
     _collectionView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(footerRefresh)footerTag:@"tag"];
    替代
     _collectionView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(footerRefresh)];
    加一个footer就可以解决问题了
    

    相关文章

      网友评论

          本文标题:CollectionView添加MJRefrsh的上拉加载,上拉

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