Enable animated bounds changes in ASCollectionView

This commit is contained in:
Levi McCallum
2016-02-23 09:36:11 -08:00
parent 92f87756b3
commit 4640801939

View File

@@ -645,7 +645,7 @@ static NSString * const kCellReuseIdentifier = @"_ASCollectionViewCell";
if (_ignoreMaxSizeChange) {
_ignoreMaxSizeChange = NO;
} else {
[self performBatchAnimated:NO updates:^{
[self performBatchAnimated:YES updates:^{
[_dataController relayoutAllNodes];
} completion:nil];
}