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就可以解决问题了