iOS collectionView 滑动出现空白
一个很常见的 banner 轮播,滑动的时候,有时候会出现空白,检查了下,发现代码没什么问题,上网查了也没啥结果,最后的解决方法是自定义layout解决
@interface TMLoopViewLayout : UICollectionViewFlowLayout@end
#import "TMLoopViewLayout.h"@implementation TMLoopViewLayout- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {return YES;
}@end