I have multiple html pages, i need to navigate from one page to other page via scrolling.
if i use web views inside a scrollview the above requirement can be solved.
But it is not a good practice according to apple and also lots of scrolling issues may occur.
Can anyone know me any alternative solution for it.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
Use UIWebView. Add gesture recognizers to webview. On recognizing a particular required gesture, perform your action of navigating to a different site. |
|||
|
|
When you reach the bottom of your view while scrolling you can call a function to append a new webview. Go through webview delegate here (You can do whatever you wish in that function, for example appending a new webview or navigate to a new one) |
||||
|
|