Hi,
I want to display a PDF from my local filesystem in an UIWebView-Control and automatically jump to the second page.
Displaying the PDF works and I found out that the method webView.ScrollView.SetContentOffset
does what I want, but only when I use that command in a button click event.
But I want to automatically jump to the second page without clicking any button. I tried the webView.FinishedLoading-Event, but unfortunately it is called before the PDF is fully loaded in the webView, thus the setContentOffset-method doesn't work as expected.
any ideas on that?