Я пытаюсь добавить пользовательский атрибут в метаданные документа 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)
}
}