Nimbus
0.9.3 - Nimbus is proudly hosted on Github
An iOS framework whose growth is bounded by O(documentation).
|
The data source for NIPagingScrollView.
Definition at line 27 of file NIPagingScrollViewDataSource.h.
Methods | |
[NIPagingScrollViewDataSource] Fetching Required Album Information | |
(NSInteger) | - numberOfPagesInPagingScrollView: |
(UIView < NIPagingScrollViewPage > *) | - pagingScrollView:pageViewForIndex: |
- (NSInteger) numberOfPagesInPagingScrollView: | (NIPagingScrollView *) | pagingScrollView |
Fetches the total number of pages in the scroll view.
The value returned in this method will be cached by the scroll view until reloadData is called again.
- (UIView<NIPagingScrollViewPage> *) pagingScrollView: | (NIPagingScrollView *) | pagingScrollView | |
pageViewForIndex: | (NSInteger) | pageIndex | |
Fetches a page that will be displayed at the given page index.
You should always try to reuse pages by calling dequeueReusablePageWithIdentifier: on the paging scroll view before allocating a new page.