TWSMapPaginator Class Reference
Inherits from | NSObject |
---|---|
Declared in | TWSMapPaginator.h |
hasNextPage
BOOL indicating the presence of a next page of results.
@property (readonly) BOOL hasNextPage
Discussion
BOOL indicating the presence of a next page of results.
Declared In
TWSMapPaginator.h
hasPreviousPage
BOOL indicating the presence of a previous page of results.
@property (readonly) BOOL hasPreviousPage
Discussion
BOOL indicating the presence of a previous page of results.
Declared In
TWSMapPaginator.h
– getItems
Obtain the list of items contained in this page of results. The order of items within the page is not guaranteed.
- (nonnull NSArray<TWSMapItem*> *)getItems
Return Value
An array of TWSMapItem objects.
Discussion
Obtain the list of items contained in this page of results. The order of items within the page is not guaranteed.
Declared In
TWSMapPaginator.h
– requestNextPageWithCompletion:
Request the next page of results for this query, if one exists. The order of items within the page is not guaranteed.
- (void)requestNextPageWithCompletion:(nonnull TWSMapPaginatorCompletion)completion
Parameters
completion |
Completion block that will specify the result of the operation and a paginator for the new page of results. |
---|
Discussion
Request the next page of results for this query, if one exists. The order of items within the page is not guaranteed.
Declared In
TWSMapPaginator.h
– requestPreviousPageWithCompletion:
Request the previous page of results for this query, if one exists. The order of items within the page is not guaranteed.
- (void)requestPreviousPageWithCompletion:(nonnull TWSMapPaginatorCompletion)completion
Parameters
completion |
Completion block that will specify the result of the operation and a paginator for the new page of results. |
---|
Discussion
Request the previous page of results for this query, if one exists. The order of items within the page is not guaranteed.
Declared In
TWSMapPaginator.h