0

我正在尝试在 Swift (macOS) 中将 .docx 转换为 .pdf。要转换我使用 PDFKit 的文档。不知何故 PDFDocumentnil会一直返回。有人可以帮我一个简单的解决方案吗?

let pdfDoc = PDFDocument(url: docxURL)
let fileURL = getDocumentsDirectory().appendingPathComponent("MyPDFDoc.pdf")
do {
   try pdfDoc.write(to: fileURL)
} catch {
   print("Error")
}

谢谢!

4

0 回答 0