获取Objective C中的pdf文档章节列表?

时间:2011-06-16 18:57:58

标签: ios objective-c pdf

我需要在Objective C中以编程方式获取pdf文档的章节列表。我用Google搜索,有人说CGPDFDocumentGetCatalog可能有用,但我不知道如何使用它。

1 个答案:

答案 0 :(得分:1)

使用PDFKit Framework中的PDFDocument类,如下所示:

PDFDocument* pdfDoc = [[PDFDocument alloc] initWithURL:... ];
PDFOutline* pdfOutline = [pdfDoc outlineRoot];