Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leoiphonedev/59b215ef66cedde4e328aa2f5617fab6 to your computer and use it in GitHub Desktop.
Save leoiphonedev/59b215ef66cedde4e328aa2f5617fab6 to your computer and use it in GitHub Desktop.
func scrollViewDidEndDecelerating(scrollView: UIScrollView) {
setIndiactorForCurrentPage()
}
func setIndiactorForCurrentPage() {
let page = (scrollView?.contentOffset.x)!/scrollWidth
pageControl?.currentPage = Int(page)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment