我希望UICollection视图具有动态CellIdentifier 像follwoing。
NSString *strIdentifier = [NSString stringWithFormat:@"cellIdentifier%d",indexPath.row];
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:strIdentifier forIndexPath:indexPath];
我该怎么做?如果它可能请帮助! 感谢
修改
我已使用此代码注册了所有标识符
//CollectionView
self.mpCollectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height) collectionViewLayout:layout];
[self.mpCollectionView setDataSource:self];
[self.mpCollectionView setDelegate:self];
for(int i=0;i<arrayExplorerItems.count;i++)
{
NSString* strIdentifier = [NSString stringWithFormat:@"cellIdentifier%d",i];
NSLog(@"registered Id:%@",strIdentifier);
[self.mpCollectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:strIdentifier];
}
and my cellForItemAtIndeaxPath is
UICollectionViewCell *cell;
NSString *strIdentifier = [NSString stringWithFormat:@"cellIdentifier%d",indexPath.row];
cell = [collectionView dequeueReusableCellWithReuseIdentifier:strIdentifier forIndexPath:indexPath];
但是给我这个错误
无法使类型的视图出列:具有标识符cellIdentifier0的UICollectionElementKindCell - 必须为标识符注册nib或类或在故事板中连接原型单元'
答案 0 :(得分:1)
有可能。您需要先注册所有单元标识符。
[collectionView registerNib:forCellWithReuseIdentifier:]
或
[collectionView registerClass:forCellWithReuseIdentifier:]
然后,您可以毫无困难地创建和出列所有准备好的标识符。