Reputation: 3607
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 ..
Upvotes: 0
Views: 754
Reputation: 17421
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.
Upvotes: 2