アプリにコレクションビューがあります。カスタムセルを含める必要があります。カスタムセルビュー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;
}
しかし、アプリを実行すると、コレクションビューがあるべき場所(テーブルビューの下の下部)に黒い長方形が表示されます。
私は何が間違っているのですか?前もって感謝します。