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 ..
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.
Use UIWebView Control to load pdf files.
精彩评论