collectionView 防止cell复用的方法

Posted Sinner_Yun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了collectionView 防止cell复用的方法相关的知识,希望对你有一定的参考价值。

collectionView 防止cell复用的方法
一:
//在创建collectionView的时候注册cell(一个分区)

UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@“cell" forIndexPath:indexPath];

    for (UIView *view in cell.contentView.subviews) {

        [view removeFromSuperview];

    }



二:

//在cellForItem方法中注册cell(多个分区)

 NSString *identifier=[NSString stringWithFormat:@"%ld%ld",(long)indexPath.section,(long)indexPath.row];
    
    [collect registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:identifier];
    
    UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
    
    for(id subView in cell.contentView.subviews){
        
        if(subView){
            
            [subView removeFromSuperview];
        }
        
    }

 

以上是关于collectionView 防止cell复用的方法的主要内容,如果未能解决你的问题,请参考以下文章

tableView/collectionView复用prepareForReuse

collectionView 中cell间距设置建议

CollectionView的cell长按事件实现

ios开发之-- tableview/collectionview获取当前点击的cell

iOS开发实战——CollectionView中cell的间距设置

不可能将 Cell 添加到 CollectionView