Is there any way to set the current page without a animated transition or scroll effect? I did not find any option in iTabStrip. But the source code of XLPagerTabStrip looks like there is in PagerTabStripViewController an option to enable or disable the animation when current page is set:
Swift:
open func moveToViewController(at index: Int, animated: Bool = true)
Is there any way to access this operation and set animated to false via native object or inline code?
Sub ChangePageNoAnimation (Index as Int)
Dim no As NativeObject = TabStrip1
no.RunMethod("moveToViewControllerAtIndex:animated:", Array(Index, False))
End Sub
Note that the PageSelected event will not be raised.