Uicollectionview不显示

Uicollectionview不显示

我的应用程序中有一个集合视图,我希望它包含一个自定义单元格。我创建了一个自定义单元格视图xib文件。然后在数据源方法中使用它:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
 OtherCustomersCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:OTHER_CUSTOMERS_CELL_IDENTIFIER forIndexPath:indexPath];

  if(cell == nil){
      NSArray *nsObjects = [[NSBundle mainBundle] loadNibNamed:@"OtherCustomersCell" owner:nil options:nil];
    for(id obj in nsObjects)
        if([obj isKindOfClass:[OtherCustomersCell class]])
            cell = (OtherCustomersCell*) obj;
}
[cell.name setText:@"AAAA BBBBB"];

return cell;
}


但是,当我运行该应用程序时,集合视图应位于表格视图下方的黑色矩形中:



我究竟做错了什么?
先感谢您。

最佳答案

集合视图的工作方式与表视图不同,因为如果不能使一个单元出队,则不必创建一个单元。

相反,您必须先为该单元注册笔尖:

- (void)viewDidLoad
{
    ...

    UINib *cellNib = [UINib nibWithNibName:@"OtherCustomersCell" bundle:nil];
    [collectionView registerNib:cellNib forCellWithReuseIdentifier:OTHER_CUSTOMERS_CELL_IDENTIFIER];
}


然后,您可以使单元出队,并在必要时自动为您创建:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    OtherCustomersCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:OTHER_CUSTOMERS_CELL_IDENTIFIER forIndexPath:indexPath]; // cell won't be nil, it's created for you if necessary!
    [cell.name setText:@"AAAA BBBBB"];

    return cell;
}

关于ios - iOS:Uicollectionview不显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15132172/

10-14 20:40