UICollectionView初步使用

UICollectionView初步使用_第1张图片
UICollectionView初步使用_第2张图片


UICollectionView初步使用_第3张图片


以上是VC中主要代码,有坑的地方:

1.[self.collectionViewregisterNib:[UINibnibWithNibName:@"WhiteBarPaymentCollectionViewCell"bundle:[NSBundlemainBundle]]forCellWithReuseIdentifier:@"WhiteBarPaymentCollectionViewCell"];

如果是用XIB 自定义的cell,这行代码不可或缺

//[self.collectionView registerClass:[WhiteBarPaymentCollectionViewCell class] forCellWithReuseIdentifier:@"WhiteBarPaymentCollectionViewCell"];

这行代码不可打开。

2.cell.backgroundColor= [UIColorwhiteColor];

开始没设置这行代码,cell一直显示不出来。

你可能感兴趣的:(UICollectionView初步使用)