gpt4 book ai didi

ios - 将图像设置为来自 url 的使用 NSArray 的单元格,但它不起作用

转载 作者:行者123 更新时间:2023-11-29 03:05:13 26 4
gpt4 key购买 nike

我已经尝试创建一个简单的照片浏览器,并且我使用了 UICollectionView,当我尝试将它们的拇指图像插入单元格时,它不起作用,它有一个线程,但我无法修复它,请帮助我,非常非常感谢。这是我的代码:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView   cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"ImageCell";
ImageCell *cell = (ImageCell *)[collectionView dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:indexPath];

NSArray *images = @[@"http://www.example.com/p1.jpg",@"http://www.example.com/p2.jpg",@"http://www.example.com/p3.jpg",@"http://www.example.com/p4.jpg"];
cell.imageView.image = [UIImage imageNamed:images[indexPath.row]];

return cell;
}

最佳答案

您也可以使用 SDWEBIMAGE。因此你可以使用

[cell.imageView setImageWithURL:[NSURL URLWithString:@"Your image url"]
placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

see this link .

关于ios - 将图像设置为来自 url 的使用 NSArray 的单元格,但它不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22852849/

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