我正在使用一个api,它返回一个" uri" (不是网址)图片。存储" uri"作为一个本地物体的财产,我无法弄清楚如何处理" uri"字符串,以将其转换为UIImage。此外,如果可以更清楚地了解网址和uri之间的区别,那将是非常好的。
答案 0 :(得分:0)
试试这个:
let uri = "assets/p12565017_p_v5_ae.jpg"
// The API documentation will tell you what the base URL is
let baseURL = URL(string: "https://www.somewhere.com")!
let imageURL = URL(string: uri, relativeTo: baseURL)!