Skip animations in conversation view.

pull/1/head
Matthew Chen 7 years ago
parent 7862345ec4
commit b67179b45d

@ -2965,10 +2965,9 @@ typedef NS_ENUM(NSInteger, MessagesRangeSizeMode) {
} else {
// We want these animations to be as short as possible, but `performBatchUpdates`
// will SIGABORT in some cases if the animation duration is zero.
[CATransaction begin];
[CATransaction setAnimationDuration:0.001f];
[self.collectionView performBatchUpdates:batchUpdates completion:batchUpdatesCompletion];
[CATransaction commit];
[UIView performWithoutAnimation:^{
[self.collectionView performBatchUpdates:batchUpdates completion:batchUpdatesCompletion];
}];
}
}

Loading…
Cancel
Save