适用于iPhone的Collection View Cell

时间:2013-03-28 19:14:09

标签: iphone xcode cell collectionview

有没有办法自动分配Collection View Cell的标识符?我有几百个单元格都给了我“单元格必须有重用标识符”的警告,我不想手动分配它们......

1 个答案:

答案 0 :(得分:0)

是的,只要你的所有单元格都是同一个类,你就可以在设置它们之前做这样的事情:

[self.collectionView registerClass:[Cell class] forCellWithReuseIdentifier:@"MyCell"];