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

Have you ever heard about PDF Viewer component developed in MonoTouch? I would pay for such component. Please, write me if you heard.

share|improve this question
iOS has built in support for PDF rendering. All of these methods are available via MonoTouch. What exactly do you need to do? – Jason Jan 19 '12 at 2:10

3 Answers

You can use mTouch-PDFReader library, it allows display PDF documents on iPhone and iPad, see more at http://mtouch-pdfreader.com

share|improve this answer

Like Jason said it's very easy to consume (or produce) PDF files using iOS.

Xamarin provides a C# sample, based on Apple original objective-c sample, that show (and zoom) a PDF document. The source code is available on github.

You'll likely be able to find more elaborate samples on github (or by googling) and I'm sure you can find 3rd party PDF components (likely in objective-c) and bind them (for MonoTouch) if you have specific requirements not met by the iOS API.

share|improve this answer

PSPDFKit has well-maintained and used bindings for MonoTouch.

It will allow you to view PDF documents, select text, add and edit annotations, see the PDF outline, search, react on events like touching a PDF link and so on. You can choose different page transitions like side scroll or pageCurl. You can see a more complete list of features on the website.

Disclaimer: I am the author of PSPDFKit, which is written in Objective-C and also a lot of C for the performance critical parts, and the bindings are managed by a 3rd-party and used by several companies.

share|improve this answer

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.