찾다

 >  Q&A  >  본문

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일 전728

모든 응답(1)나는 대답할 것이다

  • 怪我咯

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

    셀 재사용에 따른 문제입니다. alloc을 사용할 필요가 없습니다. 등록 후에는 확실히 객체가 있을 것입니다.
    그렇다면 이 문장을 이해하지 못하셨군요:

    으아아아

    값 전달 과정은 어떻게 되나요?

    회신하다
    0
  • 취소회신하다