Commit 7ab91358 by okankocyigit

fix animation of PageTabBar Line on scroll

parent 6bfd58cf
......@@ -377,7 +377,7 @@ extension PageTabBarController: UIScrollViewDelegate {
return
}
let x = (scrollView.contentOffset.x - view.width) / scrollView.contentSize.width * view.width
let x = (scrollView.contentOffset.x - view.width) / CGFloat(viewControllers.count)
pageTabBar.line.center.x = selected.center.x + x
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment