views:

60

answers:

0

Is there a way to navigate within a webview using paging - like UIScrollView's 'pagingEnabled'?

There are several suggestions out there about setting this parameter on UIWebViews internal scrollview, but this solution does not work e.g. in the case that you set the webcontent offset using javascript. In this case, the first tap on the screen will zoom you back to the beginning of the page....

Are there any recommended ways for doing this correctly?

Update
My original problem was of course that I had set paging to enabled and was setting the content offset to a number not equal to a real page boundry...

Question remains though whether there is a better way of performing this task.