1
我需要在Objective C中以編程方式獲取pdf文檔的章節列表。我已經使用了Google,有人說CGPDFDocumentGetCatalog可能會有所幫助,但我不知道如何使用它。獲取目標C中pdf文檔的章節列表?
我需要在Objective C中以編程方式獲取pdf文檔的章節列表。我已經使用了Google,有人說CGPDFDocumentGetCatalog可能會有所幫助,但我不知道如何使用它。獲取目標C中pdf文檔的章節列表?
使用在PDFKit框架的PDFDocument類,像這樣:
PDFDocument* pdfDoc = [[PDFDocument alloc] initWithURL:... ];
PDFOutline* pdfOutline = [pdfDoc outlineRoot];