美文网首页
移除UICollectionView ReloadData自带隐

移除UICollectionView ReloadData自带隐

作者: 半夏半暖半倾城灬 | 来源:发表于2021-07-14 17:10 被阅读0次

    方法一(推荐)、

    [UIView performWithoutAnimation:^{

        [collectionView reloadData];   

     }];

    方法二、

    [UIView animateWithDuration:0animations:^{

        [collectionView performBatchUpdates:^{

            [collectionView reloadData];

    } completion:nil];}];

    方法三、

    [UIView setAnimationsEnabled:NO];

    [collectionView performBatchUpdates:^{

        [collectionView reloadData];

    } completion:^(BOOL finished){

        [UIView setAnimationsEnabled:YES];

    }];

    相关文章

      网友评论

          本文标题:移除UICollectionView ReloadData自带隐

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