gpt4 book ai didi

ios - 如何传递数组以使用 SDImage 在 swift 中显示图像

转载 作者:行者123 更新时间:2023-11-28 06:38:58 25 4
gpt4 key购买 nike

这里我在 imageView 中显示图像。我能够显示图像,但在 TableView 的所有行中只能显示单个图像 我是第一次在 swift 中使用 SDWebImage。所以我想在下面的代码中传递数组以在每一行中显示相应的图像。在这里,我通过数组传递它成功地显示了名称,现在只想显示图像。

注意 : 请参阅下面注释中的代码,但它给出的错误是想传递相同的数组,但不知道如何在 swift 中编写。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell : TableViewCell = self.tableView.dequeueReusableCellWithIdentifier("Cell") as! TableViewCell
let strTitle : NSString = arrDict[indexPath.row].valueForKey("clip_name") as! NSString
cell.clipName.text = strTitle as String
cell.videoImage.sd_setImageWithURL(NSURL(string:"http://example.com/test/images/clips", arrDict(indexPath.r‌​ow).objectForKey("clip_image_path")))
return cell

}

最佳答案

您需要像这样将您的图像名称附加到您的 URL 中。

let imagePath = String(format: "http://example.com/test/images/clips/%@",arrDict[indexPath.row].valueForKey("clip_image_path") as! NSString)
cell.videoImage.sd_setImageWithURL(NSURL(string: imagePath))

关于ios - 如何传递数组以使用 SDImage 在 swift 中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38433629/

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