1

在 Swift 4.2 中使用 SDWebimage 在单元格中设置图像时,编译器会抛出以下警告。

Swift 编译器警告:

使用 '!' 这里已弃用,将在未来的版本中删除

let url = NSURL(string: (str_url) as String)

cell.img!.sd_setImage(with: url as URL!, completed: block_image) //--- WARNING ON THIS LINE AT URL!

有什么建议么 ?

4

2 回答 2

1

使用此代码:cell. img!.sd_setImage(with: url! as URL, completed: block_image)

建议:使用URL代替NSURL

            let url = URL(string: "" ) //use url String
            cell.img!.sd_setImage(with: url, completed: block_image)
于 2018-09-25T06:02:03.467 回答
0

尝试这个:

if let url = URL(string: str_url) {
    cell.img!.sd_setImage(with: url, completed: block_image)
}
于 2018-09-25T06:28:48.770 回答