After (successful) call
__weak typeof(self) wself = self; [self.collectionView performBatchUpdates:^{ [wself.collectionView.collectionViewLayout invalidateLayout]; [wself.collectionView setCollectionViewLayout:self.layoutDeletion animated:YES]; } completion:nil];
The following error message appears:
trying to load collection view layout data when layout is locked
the operation works fine, except that one particular UICollectionViewCell does not load its routines.
I have never seen this error message before, including google. Any ideas what might cause this?
source share