gpt4 book ai didi

swift - UITableViewCell 图像始终显示最后一个单元格图像

转载 作者:行者123 更新时间:2023-11-28 15:37:25 26 4
gpt4 key购买 nike

我很难在表格 View 单元格中显示图像。我没有发布所有代码,但这是我所做的:

  1. 将json解析成一个数组,得到要下载的img的url
  2. 将图像保存到文档文件夹中,为每个项目添加文件扩展名和唯一名称

    let whereToSavePath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)        
  3. 在表格 View 中显示内容并从目录加载图像

这是我在 tableview cellForRowAt indexPath 方法中的代码:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell")
let findPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)

for i in 0...allCards.count - 1 {

cell?.textLabel?.text = allCards[indexPath.row].name
let savedFile = (findPath[0] + "/" + allCards[i].cardID + ".png")
print(savedFile)
let image = UIImage(contentsOfFile: savedFile)
cell?.imageView?.image = image
}
return cell!
}

每个单元格都正确显示卡片名称,但始终显示相同的图像,即最后保存的图像。我也尝试过:

allCards[indexpath.row]

但在这种情况下没有图像显示

如果我在控制台打印 savedFile,文件名是正确的,对于每张卡,我都保存了正确的文件,如果我进入文档文件夹,图片就在那里,名称正确

这里有什么问题吗?

在此先感谢您的帮助。

最佳答案

所以这里的问题是索引路径处单元格内部的循环。 section 函数中的行返回的每一行都会调用一次此函数。所以你几乎不需要在这个函数中使用循环。尝试如下所示。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell")
let findPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)
let card = allCards[indexPath.row]
cell?.textLabel?.text = card.name
let savedFile = (findPath[0] + "/" + card.cardID + ".png")
print(savedFile)
let image = UIImage(contentsOfFile: savedFile)
cell?.imageView?.image = image
return cell!
}

关于swift - UITableViewCell 图像始终显示最后一个单元格图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44157002/

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