Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
For clarification, do you want a behavior like the Safari app where the user presses a button and pages between web views? – makdad Oct 17 '10 at 11:24
No, I want paging within the single view – LK. Oct 17 '10 at 11:51

1 Answer

Yes there is a way. Set web-kit CSS to a multi-column flow.

-webkit-column-width

Use javascript 'scrollTo' to scroll to next/previous page

window.scrollTo(xPagePosition, 0)  

Add a UIView with clear background color on top of the UIView to capture the user swipe gesture.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.