recherche

Maison  >  Questions et réponses  >  le corps du texte

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;

}

求助。

怪我咯怪我咯2837 Il y a quelques jours727

répondre à tous(1)je répondrai

  • 怪我咯

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

    Il s'agit d'un problème de réutilisation de vos cellules. Il n'est pas nécessaire d'utiliser alloc - init après l'enregistrement, il y aura certainement des objets.
    Alors vous n'avez pas compris cette phrase :

    cell.upload = self;

    Quel est le processus de transmission des valeurs ?

    répondre
    0
  • Annulerrépondre