我有一個問題,我創建了UICollectionView與自定義單元格來顯示項目。但刷新後的UICollectionView可重複使用的單元填充錯誤索引UICollectionView Static CustomCell reuse
刷新前的UICollectionView。
刷新後UICollectionView。可重複使用的集合視圖細胞的
代碼示例。
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
GalleryCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
if (indexPath.item != 0)
{
[cell setCollectionItem:[collectionData_ objectAtIndex:indexPath.row - 1]];
}
return cell;
}