@@ -537,7 +537,10 @@
[self.albumView mas_updateConstraints:^(MASConstraintMaker *make) {
make.height.mas_equalTo(self.albumViewHeight);
}];
- [self.albumCollectionView reloadData];
+
+ dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.3f * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
+ [self.albumCollectionView reloadData];
+ });
}
- (void)configUI {