gpt4 book ai didi

ios - UICollectionView 神秘崩溃

转载 作者:可可西里 更新时间:2023-11-01 03:33:04 27 4
gpt4 key购买 nike

我有一个 UICollectionView,我用从 Internet 下载的图像填充单元格。为此,我使用了 SDWebImage。我的代码如下所示:

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

NSString *CellIdentifier = @"Gallery_Cell";

GalleryCell *cell= (GalleryCell *)[self.flowCollection dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:indexPath];

if (indexPath.row < self.collectionData.count) {

CellDetails *dets = [self.collectionData objectAtIndex:indexPath.row];

NSURL *mainImageURL = [NSURL URLWithString:dets.imageURL];

cell.image.contentMode = UIViewContentModeScaleAspectFill;
cell.image.clipsToBounds = YES;

[cell.image setImageWithURL:mainImageURL placeholderImage:nil];
}

return cell;
}

我相信我已经正确设置了它。但是应用程序完全随机崩溃 (EXC_BAD_ACCESS) 有时会留下以下堆栈跟踪:

enter image description here

日志区没有其他消息。我尝试设置异常断点,但每次发生此崩溃时,都会显示此堆栈跟踪。有谁知道可能是什么问题?

最佳答案

如果有人在寻找答案,我已经解决了问题并回答了我与同一问题相关的另一个问题。你可以找到它here .希望对您有所帮助!

关于ios - UICollectionView 神秘崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20426353/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com