mrugen munshi
mrugen munshi

Reputation: 3607

how to load the pdf through programming with animation in iphone

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

Answers (2)

jamone
jamone

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

Jim
Jim

Reputation: 4719

Use UIWebView Control to load pdf files.

Upvotes: 0

Related Questions