Created
July 17, 2012 18:04
-
-
Save Rich86man/3130884 to your computer and use it in GitHub Desktop.
UIScrollview page number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CGFloat pageWidth = scrollView.frame.size.width; | |
int page = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment