Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder if there is a higher-level library for parsing PDF files in iOS (iPhone, iPad, iOS version 3.2) ? Specifically I'm looking for functionalities such as I can highlight a word or a sentence of text in a page and also to read PDF hyper-links and act upon them.

I've looked up CGPDFScannerRef and it looks like the built-in APIs are either too low-level (parsing individual PDF entities using callbacks) or too high-level (draw a PDF page on a context).

Any help?

Thanks.

share|improve this question
I was about to suggest iText with appropriate language bindings but then learned that the iPhone does not have Java? Weird. – Quaternion Dec 16 '10 at 22:01
7  
@Quaternion - How is this weird? This has been known since the launch of the platform. – Brad Larson Dec 16 '10 at 23:08
We are OT. Sorry. – Quaternion Dec 16 '10 at 23:19
hey adib,u got any solution? even i am in need of the same functionality and searching for the same. Kindly help me,if u got any way around! – Sarah Jan 11 '11 at 4:21
No solution so far. The workaround was to have a copy of the PDF's text content and search that one instead. – adib Jan 11 '11 at 9:20

4 Answers

up vote 12 down vote accepted

Try PSPDFKit. It includes full-text search, automatic thumbnail creation, single or dual page mode, view outline, page links and more. Plus, you can get the full source code, so it's customizable in every way. There's also a great out-of-the-box example that supports pdf downloading, Newsstand and more.

With 2.0, there's now also PDF text selection and annotation reading/writing support (Highlight, Ink, Note, etc)

Disclaimer: I am the developer of PSPDFKit, and put A LOT of time into making it awesome.

http://pspdfkit.com/

share|improve this answer
6  
Another useful note regarding PSPDFKit is that it costs $400 for a binary license and $800 for the source. – jimt Nov 27 '11 at 21:55
5  
That's probably less than what would cost you a developer for one day, I'd say it's a good deal. – steipete Nov 28 '11 at 12:58
1  
It looks good, but you should be fair and mention that you are the developer of PSPDFKit. ;) – Pascal Apr 3 '12 at 14:37
@Pascal Good point, I updated my answer. – steipete Apr 3 '12 at 20:40
3  
one of the best pdf reader implementations i saw, good work :) – Omar Abdelhafith Oct 4 '12 at 15:39
show 3 more comments

Please check out FastPDFKit http://mobfarm.eu/fastpdfkit

I have tested the package and you can add bookmarks, view outline, perform search and highlight. But it won't pick up web links for you.

Good luck!

share|improve this answer

See the answer for get text coordinates from pdf on iphone

share|improve this answer

Short answer: There isn't one.

Longer answer: what exactly would you expect such an API to do? It feels like you want an API that magically implements your app. There isn't that much space between "parsing the pdf file" and "parsing the PDF file and rendering it".

If you want to hilight sections you are going to have to do the rendering yourself so you can draw the hilight. I can't imagine an API that does something like "parse the PDF and supply me with bounding rectangles for all the text.

That said, there probably is a more complete API in PdDoFo maybe you could port that to iPhone.

share|improve this answer
6  
What do I expect: something like PDFKit for the Mac. – adib Jan 30 '11 at 15:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.