在 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!
有什么建议么 ?
在 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!
有什么建议么 ?
使用此代码: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)
尝试这个:
if let url = URL(string: str_url) {
cell.img!.sd_setImage(with: url, completed: block_image)
}