Merge branch 'charlesmchen/conversationCellsDontAutosize'

This commit is contained in:
Matthew Chen 2018-08-09 14:01:52 -04:00
commit 47ab354f55

View file

@ -40,6 +40,13 @@ NS_ASSUME_NONNULL_BEGIN
}
}
// For perf reasons, skip the default implementation which is only relevant for self-sizing cells.
- (UICollectionViewLayoutAttributes *)preferredLayoutAttributesFittingAttributes:
(UICollectionViewLayoutAttributes *)layoutAttributes
{
return layoutAttributes;
}
@end
NS_ASSUME_NONNULL_END