1 写法
写法与tableview不同,没有那么多种创建的方法
2 解决复用
https://blog.csdn.net/sadsadaadsd/article/details/51956671
3.iOS11后,UICollectionView顶到屏幕顶端会出现白色的间隔(h =20)
if (@available(iOS 11.0, *)) {
self.mainCollectionView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
网友评论