Is it possible to disable animation on scrollToView in a ScrollableView?
I have a scrollable view with 18 webviews in it. When I scrollToView more than 1 or 2 away from the current view, the new webview does not load.
I feel like if I could disable animation it might be ok.
2 Answers
-
Accepted Answer
this should work instead of scrollToView
the_scrollable_view.currentPage = 2;
assuming you have > 3 views
-
i tried the accepted answer and i still have the "scrolling effect" , i think that the accepted answer solved the problem of loading the webView and did not answer on how to disable the scrolling animation .
Any other ideas to achieve this ?