如图,上传一张照片后刚开始显示正常,向上将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;
}
求助。
셀 재사용에 따른 문제입니다. alloc을 사용할 필요가 없습니다. 등록 후에는 확실히 객체가 있을 것입니다.
으아아아그렇다면 이 문장을 이해하지 못하셨군요:
값 전달 과정은 어떻게 되나요?