Skip to content

Instantly share code, notes, and snippets.

@marshluca
Created December 14, 2010 06:03
Show Gist options
  • Save marshluca/740058 to your computer and use it in GitHub Desktop.
Save marshluca/740058 to your computer and use it in GitHub Desktop.
滚动scrollView的时候,获取当前page
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
CGFloat pageWidth = galleryScrollView.frame.size.width;
int currentPage = floor((galleryScrollView.contentOffset.x - pageWidth / 2) / 320) + 1;
[self loadSelectedPage:currentPage];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment