Perform UICollectionView reloadData without animation

475 Views Asked by At

I have UICollectionView cells with a rounded button inside, when I perform reloadData every rounded button goes from the left to the right. To avoid it, I'm using:

[UIView performWithoutAnimation:^{
    [self.collectionView reloadData];
}];

but it doesn't seem to work anymore on iOS 14, can someone help me?

1

There are 1 best solutions below

0
On

This is the correct way to do it:

[UIView performWithoutAnimation:^{
    [self.collectionView reloadData];
    [self.collectionView layoutIfNeeded];
}];