iOS 防止UICollectionViewCell复用的两种方法

Posted

tags:

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

参考技术A //   1、在创建collectionView的时候注册cell(一个分区)

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

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

[view removeFromSuperview];



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

NSString *identifier=[NSString stringWithFormat:@"%ld%ld",(long)indexPath.section,(long)indexPath.row];

[collect registerClass:[UICollectionViewCellclass] forCellWithReuseIdentifier:identifier];

UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];

for(id subView in cell.contentView.subviews)

        if(subView)

          [subView removeFromSuperview];

         



原文链接: 防止collectionViewCell复用方法

html 防止iOS上的缩放

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />

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

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

UICollectionView

ios开发防止App被抓包

防止 iOS 11.3 溢出弹跳

iOS - 防止使用相机拍摄的照片进入 iCloud

iOS知识点集合