Hey
Just wondering what the best way to find out what page you're on in a paged scroll view.
At the moment I have this:
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
float page = scrollView.contentSize.width / scrollView.contentOffset.x;
}
is this the only way? Or am I missing some simple scrollView.page
property or something?
... * goes to check * :p