2

I'm using PSPDFKit. I'm wondering if it is possible to add Bookmarks support, something like the bookmarks feature in iBooks.

Nicolas
  • 884
  • 5
  • 13

1 Answers1

2

The PSPDFKit PDF SDK does support it's own version of bookmarks. They are not defined in the PDF standard, so they are written to an external file (unlike e.g. ink or highlight annotations, who are written back into the PDF on saving)

There's also a bookmarks controller that you can show via your custom UI with simply opening the PSPDFBookmarkViewController.

Andrew Barber
  • 39,603
  • 20
  • 94
  • 123
steipete
  • 7,581
  • 5
  • 47
  • 81
  • Hi Peter, thank you for your reply. The "Faked" way it's what i was looking for. I just sended you a mail because i have a doubt with another thing. – Nicolas May 03 '12 at 09:10
  • 1
    The features introduced in v2 are great. Thank you. – Nicolas Oct 19 '12 at 09:41