views:

1224

answers:

4

I have a PDF loaded in an iPhone app using UIWebView and it displays page numbers when the pages are scrolled manually. But I've had no luck figuring out how to access those numbers and set the page displayed. Any suggestions would be welcomed. Thanks.

+1  A: 

There's no way to do this using the methods available through the SDK. If you really need this functionality you can file a bug report.

Tim
+1  A: 

Since you're using a uiwebview it can interpret javascript for navigation, even with a pdf. determine the pixel size of each page, and you can theoretically calculate your location on any given page and and navigate accordingly.

isaac
A: 

You can do this using Quartz Core Api in Iphone SDK.

Vishwa