搜尋

首頁  >  問答  >  主體

ios - UICollectionViewCell 显示问题?

如图,上传一张照片后刚开始显示正常,向上将cell划出屏幕上传好的图片就变到第二个item里了。

上滑屏幕

部分代码:

注册:

[self.pictureCollection registerNib:[UINib nibWithNibName:@"CAPictureCell" bundle:[NSBundle mainBundle]]forCellWithReuseIdentifier:@"capicture"];

代理方法:

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{

CAPictureCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"capicture" forIndexPath:indexPath];
cell.upload = self;
cell.indexPath = indexPath;
return cell;

}

求助。

怪我咯怪我咯2772 天前683

全部回覆(1)我來回復

  • 怪我咯

    怪我咯2017-04-17 17:58:34

    這個就是你的cell復用出問題了。 regist之後不需要使用alloc - init;絕對會有物件的。
    然後就是你這一句沒看懂:

    cell.upload = self;

    這個傳值的過程是怎麼樣的?

    回覆
    0
  • 取消回覆