gpt4 book ai didi

swift - 将 base64 字符串作为 PDF 显示到 Web View 中

转载 作者:搜寻专家 更新时间:2023-11-01 06:15:53 26 4
gpt4 key购买 nike

我有代表 PDFbase64 字符串。我想在 Webview 中显示它,但我不知道该怎么做。

我该如何处理?我需要先将 String 转换为 Data 吗?

最佳答案

请尝试下面的代码。

if let decodeData = NSData(base64EncodedString: base64String, options: .IgnoreUnknownCharacters) {
yourWebView.loadData(decodeData, MIMEType: "application/pdf", textEncodingName: "utf-8", baseURL: NSURL(fileURLWithPath: ""))
} // since you don't have url, only encoded String

swift 4.0

if let decodeData = Data(base64Encoded: base64String, options: .ignoreUnknownCharacters) {
yourWebView.load(decodeData, mimeType: "application/pdf", textEncodingName: "utf-8", baseURL: URL(fileURLWithPath: ""))
} // since you don't have url, only encoded String

关于swift - 将 base64 字符串作为 PDF 显示到 Web View 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45186609/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com