如何为 PDF 数据提供一个文件名,以便用户保存在 Swift 中



我把我的pdfData交给用户保存。他可以保存到文件并制作文件,但pdf文件的默认名称是:PDF document.pdf。如果可能的话,我想要自己的文件名。也许我可以在将 pdfData 提供给UIActivityViewController之前更改 pdfData 中的文件名?

这是我的代码:

// Create page rect
let pageRect = CGRect(x: 0, y: 0, width: 595.28, height: 841.89) // A4, 72 dpi
// Create PDF context and draw
let pdfData = NSMutableData()
UIGraphicsBeginPDFContextToData(pdfData, pageRect, nil)
UIGraphicsBeginPDFPage()
// From here you can draw page, best make it in a function
PdfErstellung.PdfErstellen(auswahlZeilen, vitalstoffWerteListe, heuteString)
UIGraphicsEndPDFContext()
// Save pdf DATA through user
let activityViewController = UIActivityViewController(activityItems: [pdfData], applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view // für IPAD nötig
self.present(activityViewController, animated: true, completion: nil)

--更新--

我的新想法是,首先尝试保存文件并尝试一个URL,如果失败,则直接使用pdfData,因为在某些模拟器中使用URL不会出错,而在其他模拟器中会给出错误。

更多内容: https://stackoverflow.com/a/52499637/10392572

您只需要将pdfData保存到临时文件URL并共享该URL。

let temporaryFolder = FileManager.default.temporaryDirectory
let fileName = "document.pdf"
let temporaryFileURL = temporaryFolder.appendingPathComponent(fileName)
print(temporaryFileURL.path)  // /Users/lsd/Library/Developer/XCPGDevices/E2003834-07AB-4833-B206-843DC0A52967/data/Containers/Data/Application/322D1F1D-4C97-474C-9040-FE5E740D38CF/tmp/document.pdf
do {
try pdfData.write(to: temporaryFileURL)
// your code
let activityViewController = UIActivityViewController(activityItems: [temporaryFileURL], applicationActivities: nil)
} catch {
print(error)
}

请注意,您还可以将 AirDrop 的用户标题设置为如下使用:

let temporaryFolder = FileManager.default.temporaryDirectory
let fileName = "Carburant Discount Historique des Prix au (Date()).json"
let temporaryFileURL = temporaryFolder.appendingPathComponent(fileName)
print(temporaryFileURL.path)
do {
try? FileManager.default.removeItem(at: temporaryFileURL)
try json.write(to: temporaryFileURL)
}
catch let error {
print("(#function): *** Error while writing json to temporary file. (error.localizedDescription)")
alert("Export impossible")
return
}
/// Sets the **title** along with the URL
let dataToShare: [Any] = ["Historique des prix", temporaryFileURL]
let activityViewController = UIActivityViewController(activityItems: dataToShare, applicationActivities: nil)

最新更新