how load a pdf into iphone and my pdf is of 200 pages then it should allow to turn the pages as we do with while reading book manually means use animation to turn a page one by one .. Thanking you ..
but how can u be bit expand over it
mrugen
2010-06-29 13:08:59
+1
A:
Loading a large PDF and having page flipping animation isn't very simple. You can use a UIWebView like @Jim says to load the entire thing by just pointing the UIWebView's URL to the PDF but you won't get page animation. However to get full control requires that you render the PDF page by page manually to a view, and create the view's turning animation your self. Its nontrivial, and given your question you don't sound like you know enough to realistically achieve this right off.
jamone
2010-06-29 13:21:20
Ya i am new to iphone devloping can u help me out can u or can u provide me the code
mrugen
2010-06-29 13:23:38
Like I said you can load it in a web view but it won't have page turning animation. Your options. Split the PDF up with 1 page per file, and flip between different webviews, or create a custom view to display the PDF and flip between them. For the animating check out CoreAnimation in the dev docs.
jamone
2010-06-29 13:33:07