我需要在Objective C中以编程方式获取pdf文档的章节列表。我用Google搜索,有人说CGPDFDocumentGetCatalog可能有用,但我不知道如何使用它。
答案 0 :(得分:1)
使用PDFKit Framework中的PDFDocument类,如下所示:
PDFDocument* pdfDoc = [[PDFDocument alloc] initWithURL:... ];
PDFOutline* pdfOutline = [pdfDoc outlineRoot];