Does anyone know how to use core graphics to draw a pdf like in iBooks. I can already draw a pdf page using core graphics but was curious how iBooks shows a lower quality view of each page so it loads fast and then when you stay on a page longer it renders it a full quality. This makes it able to open the pdf without having to make the user wait like most magazine apps you see on ipad. Any ideas would help!

link|improve this question

80% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Apple have some "ZoomingPDFViewer" sample code:

http://developer.apple.com/library/ios/#samplecode/ZoomingPDFViewer/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010281

I suspect that might give you some good ideas :-)

link|improve this answer
Perfect, this is exactly what I was looking for, I'll remember to check the documentation first before I ask questions next time!!! – marchinram Sep 29 '10 at 14:40
feedback

I assume they use multiple layers, the first layer loads the pdf in low resolution and the better resolution is prepared in the background. When ready these layers are swapped.

Have a look at CGPDFDocumentRef and CATiledLayer in the documentation.

link|improve this answer
+1 for only have 6 rep – willcodejavaforfood Sep 28 '10 at 8:19
Yup, a CATiledLayer is how it's done, JosephH below posted a great link – marchinram Sep 29 '10 at 14:41
feedback

Your Answer

 
or
required, but never shown

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