在ios中检索文件属性

时间:2014-04-21 04:47:33

标签: ios pdf

我想从pdf文件中检索关注attributes

  • 标题
  • 作者
  • 主题
  • 关键字
  • 创建日期
  • 修改日期
  • 应用

到目前为止,我使用NSFileManager提取了创建日期和修改日期。是否有任何方法可以在ios中获取此属性。

提前致谢。

enter image description here

这是我从我的mac拍摄的照片。这些是我想要提取的信息。

1 个答案:

答案 0 :(得分:0)

CGPDFDocumentRef _pdfDocRef = CGPDFDocumentCreateWithURL((__bridge CFURLRef)(fileURL));
CGPDFDictionaryRef infoDic  = CGPDFDocumentGetInfo(_pdfDocRef);

显示以下数据,

key = Title
key = Creator
key = Author
key = Producer
key = Trapped
key = CreationDate
key = ModDate