本文主要是介绍iOS CollectionView加载xib CollectionViewCell,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
static NSString *identifier=@"cell";
- (void)viewDidLoad {
[super viewDidLoad];
self.automaticallyAdjustsScrollViewInsets=NO;//去掉顶部留白
//注册cell 有几种cell样式注册几次
[_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:identifier];
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
//在这里注册自定义的XIBcell否则会提示找不到标示符指定的cell
UINib *nib = [UINibnibWithNibName:@"FCollectionViewCell"bundle: [NSBundlemainBundle]];
[collectionView registerNib:nib forCellWithReuseIdentifier:identifier];
FCollectionViewCell *cell = [collectionViewdequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
return cell;
}
这篇关于iOS CollectionView加载xib CollectionViewCell的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!