swift3 – 如何在Swift 3中将文档目录中的图像显示到UIImageView?

前端之家收集整理的这篇文章主要介绍了swift3 – 如何在Swift 3中将文档目录中的图像显示到UIImageView?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
下面的 Swift 2示例给出了以下错误

Value of type String has no member ‘stringByAppendingPathComponent’

我需要为Swift 3更改什么?

Apple试图将所有人从URL-as-string范例转移到URL(即file:///path/to/file.text). Swift API几乎删除了所有支持URL的路径.

你仍然可以在Objective-C(NSString)中找到它:

let paths = NSSearchPathForDirectoriesInDomains(.documentDirectory,.userDomainMask,true)[0] as String
let getImagePath = NSString.path(withComponents: [paths,"fileName"])

Swifty方式越多:

let paths = NSSearchPathForDirectoriesInDomains(.documentDirectory,true)[0] as String
let url = URL(fileURLWithPath: paths).appendingPathComponent("fileName")
原文链接:/swift/318701.html

猜你在找的Swift相关文章