iOS PDFkit не может добавить пользовательский атрибут в документ PDF - PullRequest
0 голосов
/ 04 марта 2019

Я пытаюсь добавить пользовательский атрибут в метаданные документа pdf, но после сохраненный документ (документ) пользовательский атрибут не добавляется в документ.

    @IBOutlet weak var pdfContainerView: PDFView!
    private func setDocumentAttributes(){
        if let document = pdfContainerView.document{
            var attributes = document.documentAttributes
            attributes!["NewAttribute"] = "Test"
            document.documentAttributes = attributes
            savedocument(document)
        }
    }
...