Reputation: 16758
i want to create simple pdf reader application for ipad. but did not find the proper documentation or sample code. please guide me from where i should start.
Thanks
Miraaj
Upvotes: 1
Views: 2424
Reputation: 510
uiwebview *web;
[self.web loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"senthil" ofType:@"pdf"]]]];
Upvotes: 0
Reputation: 1985
You can find a nice app sample with CC license on this repository
I hope it helps. It definitely helped me
Upvotes: 1
Reputation: 523724
Just use a UIWebView. WebKit can display PDF natively.
If you need to render the PDF yourself not relying on WebKit, check the CGPDF*** stuff (search for it in Xcode docs).
Upvotes: 5