The iOS framework that grows only as fast as its documentation
<NIPagingScrollViewDelegate> Protocol Reference

Overview

The delegate for NIPagingScrollView.

Inheritance diagram for <NIPagingScrollViewDelegate>:
<NIPhotoAlbumScrollViewDelegate> NIToolbarPhotoViewController

Tasks

[NIPhotoAlbumScrollViewDelegate] Scrolling and Zooming
(void) - pagingScrollViewDidScroll:
 
[NIPagingScrollViewDelegate] Changing Pages
(void) - pagingScrollViewWillChangePages:
 
(void) - pagingScrollViewDidChangePages:
 

Method Documentation

pagingScrollViewDidScroll:

The user is scrolling between two photos.

- (void)pagingScrollViewDidScroll:(NIPagingScrollView *)pagingScrollView;

pagingScrollViewWillChangePages:

The current page will change.

- (void)pagingScrollViewWillChangePages:(NIPagingScrollView *)pagingScrollView;
Discussion

pagingScrollView.centerPageIndex will reflect the old page index, not the new page index.

pagingScrollViewDidChangePages:

The current page has changed.

- (void)pagingScrollViewDidChangePages:(NIPagingScrollView *)pagingScrollView;
Discussion

pagingScrollView.centerPageIndex will reflect the changed page index.