作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里我在 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.row).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/
这里我在 imageView 中显示图像。我能够显示图像,但在 TableView 的所有行中只能显示单个图像 我是第一次在 swift 中使用 SDWebImage。所以我想在下面的代码中传递数组以
我是一名优秀的程序员,十分优秀!