0
我是IOS中的新成員,我想使用安裝在我的iPhone上的Adobe Acrobat應用程序查看PDF文件。我想查看的PDF文件Adobe acrobat來自web服務,採用base64格式。我已經以字節轉換,而不是.pdf格式。我的pdf格式現在是.pdf格式。但現在如何在Adobe Acrobat中打開此pdf。 在我的代碼中,脾氣是我的pdf的路徑。如何在swift中從我的iPhone應用程序在Adobe acrobat中查看pdf
@IBAction func savePDF(_ sender: Any) {
let pdfData = Data(base64Encoded: FilePDF, options: .ignoreUnknownCharacters)
let array = pdfData?.withUnsafeBytes
{
[UInt8](UnsafeBufferPointer(start: $0, count: (pdfData?.count)!))
}
let data = NSData(bytes: array, length: (array?.count)!);
let tmpDir = NSTemporaryDirectory()
data.write(toFile: tmpDir.appending("HandyHR_File_YEAR.pdf"), atomically: true)
print(array!)
print(data)
print(tmpDir)
}