Skip to content

Instantly share code, notes, and snippets.

@saiday
Last active December 1, 2015 18:08
Show Gist options
  • Select an option

  • Save saiday/f16b9fc2d89cffe53294 to your computer and use it in GitHub Desktop.

Select an option

Save saiday/f16b9fc2d89cffe53294 to your computer and use it in GitHub Desktop.
Delegate protocol
@protocol PaginatorDelegate <NSObject>
- (void)paginator:(Paginator *)paginator didLoadNewContent:(NSArray *)items;
@optional
- (void)paginatorDidReachEnd:(Paginator *)paginator;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment