如图:我在collection.xib中创建了2个cell,定义了不同的identifier,
使用的时候:
NSArray *nibArrays = [[UINib nibWithNibName:@"LongCell" bundle:nil] instantiateWithOwner:nil options:nil];
[collectionView registerClass:[[nibArrays objectAtIndex:0] class] forCellWithReuseIdentifier:@"LongCellFirst"];
[collectionView registerClass:[[nibArrays objectAtIndex:1] class] forCellWithReuseIdentifier:@"LongCellSecond"];
#pragma mark - UICollectionViewDelegate DataSource -
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.item % 2 == 0) {
LongCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"LongCellFirst" forIndexPath:indexPath];
return cell;
}else {
LongCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"LongCellSecond" forIndexPath:indexPath];
return cell;
}
}
这样能运行,但是取出的cell都是上面什么也没有。
是我注册cell不对吗??还是因为不能这样用?tableViewCell.xib就可以这样搞啊?
tableView.xib中创建多个cell
请大神解释啊。。。。。。
你是用nib創建的啊,不應該用registerNib來註冊嗎?為什麼用regClass。
xib檔案讀取錯了
NSArray *nibArrays=[[NSBundle mainBundle]loadNibNamed:@"LongCell" owner:nil options:nil];
兩種方法:
拆成兩個
xib
,每次registerNib:
一個;合成一個,但是自己初始化實例:
建議一個 xib 檔案對應一個 View,沒必要省文件吧
依照上面說到的方法,可以顯示cell,但cell裡的控制設定時沒有效果,請問樓主解決了嗎?
在cell中關聯cell上的控制項時,如果你不做修改。你所有關聯的控制項都預設為cell1上的控制項。通俗的講也就是連線時預設的都是第一個cell上的控制