Conforms to NSObject
Declared in TKPagedScrollView.h

Overview

The delegate for TKPagedScrollView. Use this delegate instead of taking UIScrollView’s delegate.

Instance Methods

pagedScrollView:didMoveToPage:

The event sent when a paged scroll view did animate to a different page.

- (void)pagedScrollView:(TKPagedScrollView *)pagedScrollView didMoveToPage:(NSInteger)page

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

page

The page that did become the active page.

Declared In

TKPagedScrollView.h

pagedScrollView:willMoveToPage:

The event sent when a paged scroll view will animate to a different page.

- (void)pagedScrollView:(TKPagedScrollView *)pagedScrollView willMoveToPage:(NSInteger)page

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

page

The page that will become the active page.

Declared In

TKPagedScrollView.h

pagedScrollViewDidEndDecelerating:

Tells the delegate that the scroll view has ended decelerating the scrolling movement.

- (void)pagedScrollViewDidEndDecelerating:(TKPagedScrollView *)pagedScrollView

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

Declared In

TKPagedScrollView.h

pagedScrollViewDidEndDragging:willDecelerate:

Tells the delegate when dragging ended in the scroll view.

- (void)pagedScrollViewDidEndDragging:(TKPagedScrollView *)pagedScrollView willDecelerate:(BOOL)decelerate

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

decelerate

YES if the scrolling movement will continue, but decelerate, after a touch-up gesture during a dragging operation. If the value is NO, scrolling stops immediately upon touch-up.

Declared In

TKPagedScrollView.h

pagedScrollViewDidEndScrollingAnimation:

Tells the delegate when a scrolling animation in the scroll view concludes.

- (void)pagedScrollViewDidEndScrollingAnimation:(TKPagedScrollView *)pagedScrollView

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

Declared In

TKPagedScrollView.h

pagedScrollViewDidScroll:

Tells the delegate when the user scrolls the content view within the receiver.

- (void)pagedScrollViewDidScroll:(TKPagedScrollView *)pagedScrollView

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

Declared In

TKPagedScrollView.h

pagedScrollViewDidScrollToTop:

Tells the delegate that the scroll view scrolled to the top of the content.

- (void)pagedScrollViewDidScrollToTop:(TKPagedScrollView *)pagedScrollView

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

Declared In

TKPagedScrollView.h

pagedScrollViewShouldScrollToTop:

Asks the delegate if the scroll view should scroll to the top of the content.

- (BOOL)pagedScrollViewShouldScrollToTop:(TKPagedScrollView *)pagedScrollView

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

Declared In

TKPagedScrollView.h

pagedScrollViewWillBeginDecelerating:

Tells the delegate that the scroll view is starting to decelerate the scrolling movement.

- (void)pagedScrollViewWillBeginDecelerating:(TKPagedScrollView *)pagedScrollView

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

Declared In

TKPagedScrollView.h

pagedScrollViewWillBeginDragging:

Tells the delegate when the scroll view is about to start scrolling the content.

- (void)pagedScrollViewWillBeginDragging:(TKPagedScrollView *)pagedScrollView

Parameters

pagedScrollView

The paged-scroll-view object in which the scrolling occurred.

Declared In

TKPagedScrollView.h