在模拟器上有效。
这是我在保存图像时打印的路径:
/var/mobile/Containers/Data/Application/31912F79-EB94-4DB1-84B8-68C7368B9160/Documents/t123t.jpg
这是html中的img标签,应将图像加载到webView中(在模拟器上工作正常):
img src="file:///var/mobile/Containers/Data/Application/31912F79-EB94-4DB1-84B8-68C7368B9160/Documents/t123t.jpg">
正如我在这里看到的所有内容一样,我认为问题应该出在路径上,我从file://
中删除了img src
部分,但并没有帮助我。
答案 0 :(得分:1)
已解决
由于某些原因,无法通过从字符串加载html来访问Documents
中的图像。我需要在html file
文件夹中创建一个Documents
才能读取该文件夹中的图像。
因此, html和图像(资源)需要位于同一文件夹中。
无效的代码:
webView.loadHTMLString(html, baseURL: URL(fileURLWithPath: Bundle.main.bundlePath))
//html is a string.
有效的代码:
let paths = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
let documentsDirectory = paths[0]
let filename = documentsDirectory.appendingPathComponent("index.html")
do {
//html is a string
try html.write(to: filename, atomically: true, encoding: String.Encoding.utf8)
} catch {
//...
}
webView.loadFileURL(filename, allowingReadAccessTo: documentsDirectory)
答案 1 :(得分:0)
首先,您提到的路径
/var/mobile/Containers/Data/Application/31912F79-EB94-4DB1-84B8-68C7368B9160/Documents/t123t.jpg
具有随机字符串的文件夹(内部应用程序)在重新打开应用程序后始终会更改。
Apple出于安全目的实施了此操作。
let documentDirectory = FileManager.SearchPathDirectory.documentDirectory
let userDomainMask = FileManager.SearchPathDomainMask.userDomainMask
let paths = NSSearchPathForDirectoriesInDomains(documentDirectory, userDomainMask, true).first
let path: String = paths!
//path has address of document directory and we need address of tmp directory where pictures are stored
let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent("\(url)")
let image = UIImage(contentsOfFile: imageURL.path)
当我遇到同样的问题时,这在我的第一个项目中对我有用。
希望我能帮助您:)
快乐编码