标签: swift xcode4 nsurl
我得到这个错误然后这样做?我的目标是从firebase获取图像并在我的tableview中查看它。
答案 0 :(得分:0)
您应该使用URL(string: profileImageUrl)而不是NSURL(string: profileImageUrl),因为URLSession期望网址不是NSURL。
URL(string: profileImageUrl)
NSURL(string: profileImageUrl)