ios - UICollectionViewCell 显示问题?
怪我咯
怪我咯 2017-04-17 17:56:34
0
1
684

如图,上传一张照片后刚开始显示正常,向上将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;

}

求助。

怪我咯
怪我咯

走同样的路,发现不同的人生

Antworte allen(1)
刘奇

这个就是你的cell复用出问题了。regist之后不需要使用alloc - init;绝对会有对象的。
然后就是你这一句没看懂:

cell.upload = self;

这个传值的过程是怎样的?

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage