tags:

views:

918

answers:

2

hi

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

+2  A: 

You should start at the iPhone Developer Center.

Barry Wark
+3  A: 

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).

KennyTM