tags:

views:

94

answers:

1

I want to read pdf file in iphone/ipad and i want to give animation(turn page) effect each page of pdf.

A: 

for just regular viewing u can use UIWebViewonce you have created this object assign it an IBOutlet and do something like this:

[mywebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithString:[[NSBundle mainBundle] pathForResources:@"myPDF" ofType:@"pdf"]]]];

to embed page flip features you can Subclass UIWebView and and start playing around.

jAmi