views:

93

answers:

1

I want to flip the pdf pages on iphone. I load the pdf file on iphone but it is scrolling I want to flip pdf pages... please give me any helo

+1  A: 

You would need to create a view or a layer for every pdf page. You do so by creating a UIView subclass and inside drawRect: use the CGPDF* functions to extract and render a given page of your pdf.

You could then use UIViewTransitons or CoreAnimation to animate the pages of your PDF.

See:

tonklon
please send me any source code for page flipping
asdcfv