Conforms to NSObject
Declared in RKObjectPaginator.h

Overview

The RKObjectPaginatorDelegate formal protocol defines RKObjectPaginator delegate methods that can be implemented by objects to receive informational callbacks about paginated loading of mapping objects through RestKit.

Tasks

Instance Methods

paginator:didFailWithError:objectLoader:

Tells the delegate the paginator has failed loading due to an error.

- (void)paginator:(RKObjectPaginator *)paginator didFailWithError:(NSError *)error objectLoader:(RKObjectLoader *)loader

Parameters

paginator

The paginator that failed loading due to an error.

error

An NSError indicating the cause of the failure.

loader

The loader request that resulted in the failure.

Declared In

RKObjectPaginator.h

paginator:didLoadObjects:forPage:

Tells the delegate the paginator has loaded a page of objects from the collection.

- (void)paginator:(RKObjectPaginator *)paginator didLoadObjects:(NSArray *)objects forPage:(NSUInteger)page

Parameters

paginator

The paginator that loaded the objects.

objects

An array of objects mapped from the remote JSON/XML representation.

page

The page number that was loaded.

Declared In

RKObjectPaginator.h

paginator:willLoadPage:objectLoader:

Tells the delegate that the paginator is about to begin loading a page of objects.

- (void)paginator:(RKObjectPaginator *)paginator willLoadPage:(NSUInteger)page objectLoader:(RKObjectLoader *)loader

Parameters

paginator

The paginator performing the load.

page

The numeric page number being loaded.

loader

The object loader request used to load the page.

Declared In

RKObjectPaginator.h

paginatorDidLoadFirstPage:

Tells the delegate the paginator has loaded the first page of objects in the collection.

- (void)paginatorDidLoadFirstPage:(RKObjectPaginator *)paginator

Parameters

paginator

The paginator instance that has loaded the first page.

Declared In

RKObjectPaginator.h

paginatorDidLoadLastPage:

Tells the delegate the paginator has loaded the last page of objects in the collection.

- (void)paginatorDidLoadLastPage:(RKObjectPaginator *)paginator

Parameters

paginator

The paginator instance that has loaded the last page.

Declared In

RKObjectPaginator.h