尝试从firebase数据库显示图像到tableview [重复]
Posted
技术标签:
【中文标题】尝试从firebase数据库显示图像到tableview [重复]【英文标题】:Trying show image from firebase database to tableview [duplicate] 【发布时间】:2017-10-23 09:15:21 【问题描述】:我正在尝试将图像从 firebase 数据库显示到 tableview 但出现错误。
对成员'dataTask(with:completionHandler:)'的模糊引用
let url = NSURL(string: profileImageUrl)
let session = URLSession.shared
let task = session.dataTask(with: url) (data, response, err) in
if err != nil
return
cell.imageView?.image = UIImage(data: data)
task.resume()
【问题讨论】:
【参考方案1】:从 swift 3 版本开始,Swift 标准库包括没有 'NS' 前缀的 Foundation 框架类;因此,由于您使用的是 URLSession 而不是 NSURLSession,因此您必须使用 URL 而不是 NSURL 以使 URLSession 实例方法 'dataTask(with:completionHandler:)' 中的两个类相互兼容。
只需将 url 声明为
let url = URL(string: profileImageUrl)
完成了。
【讨论】:
以上是关于尝试从firebase数据库显示图像到tableview [重复]的主要内容,如果未能解决你的问题,请参考以下文章