我有一个 Mac 应用程序,它可以读取带有存储为NSAttributedString
. 我想将其转换为 HTML,包括图像。
获取 HTML 工作正常,我什至可以枚举附加图像,但我无法获得附加图像的实际文件名。我需要那些用于生成的 HTML。
获取 HTML:
let htmlData = try attrString.dataFromRange(NSMakeRange(0, attrString.length),
documentAttributes: [NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType])
产生:
<p class="p1"><img src="file:///Untitled%202.jpg" alt="Untitled 2.jpg"></p>
枚举附加图像:
attrString.enumerateAttribute(NSAttachmentAttributeName,
inRange: NSMakeRange(0, attrString.length),
options: [],
usingBlock: {attachment, range, _ in
if let attachment = attachment as? NSTextAttachment,
let fileWrapper = attachment.fileWrapper,
let data = fileWrapper.regularFileContents
{
// This prints <NSTextAttachment: 0x7fe68d5304c0> "Untitled 2.jpg"
// But there's no API to get the name?
print(attachment.description)
}
})
所以我以NSTextAttachment
实例结束,但无法确定实际文件名(“Untitled 2.jpg”)。NSFileWrapper.filename
返回nil
,我没有看到从文本附件中获取名称的 API。
令人沮丧的部分是信息在文本附件中。如果我打印它的调试描述,我会看到文件名:
<NSTextAttachment: 0x7fe68d5304c0> "Untitled 2.jpg"
<NSTextAttachment: 0x7fe68d533d60> "Pasted Graphic.tiff"
如何访问文件名?(不解析调试描述;)