I have an app which scrolls through Pdf files using buttons and an index within a UIWebview. It uses the code PdfViewController.scrollPosition to move to specified position’s within the Pdf file. The app has been working fine and was sent to iTunes months ago but recently I have upgraded to Xcode 4 and when I try to run my app using the Ios 5 simulator the positioning will not work.
What has changed in the new Ios 5 that prevents the above code from working?
This was answered via another similar question I posted. The reason that it now doesn’t work, is that IOS 5 does not support Javascript (Thank you Apple). You can use a different method to navigate through your Pdf by using webView.scrollView to move through your Pdf pages.