我有一个带有单元格的tableView,在每个单元格内,我们都有cell.imageView?.image
。
我的任务-通过URL直接从Google驱动器上传到该cell.imageView?.image
图片!我已经完成了文件ID为https://docs.google.com/uc?id=FILE-ID
我已经尝试了下面的代码,但是0种效果!
import Foundation
for name in filesShow {
if name.name == i.textLabel?.text {
i.detailTextLabel?.text = name.identifier
i.accessoryType = .checkmark
i.imageView?.image = UIImage(url:
URL(string: "https://docs.google.com/uc?id=\(name.identifier)"))
self.tableView.reloadData()
continue
}
extension UIImage {
convenience init?(url: URL?) {
guard let url = url else { return nil }
do {
let data = try Data(contentsOf: url)
self.init(data: data)
} catch {
print("Cannot load image from url: \(url) with error: \(error)")
return nil
}
}
}