Inherits from NSObject
Declared in TKSideDrawerTransition.h

Overview

This is a base class that represents a transition used to show and dismiss TKSideDrawer.

Properties

sideDrawer

TKSideDrawer that will be show or dismissed.

@property (nonatomic, weak, null_unspecified) TKSideDrawer *sideDrawer

Declared In

TKSideDrawerTransition.h

Instance Methods

dismiss

Dismisses the TKSideDrawer intance.

- (void)dismiss

Declared In

TKSideDrawerTransition.h

handleGesture:

Handels a gesture.

- (void)handleGesture:(UIGestureRecognizer *__nonnull)gestureRecognizer

Parameters

gestureRecognizer

The gesture that will be handled.

Declared In

TKSideDrawerTransition.h

initWithSideDrawer:

Creates new TKSideDrawerTransition instance.

- (instancetype __nonnull)initWithSideDrawer:(TKSideDrawer *__nonnull)sideDrawer

Parameters

sideDrawer

The sideDrawer that will be shown and dismiss by this transition.

Return Value

TKSideDrawerTransition instance.

Declared In

TKSideDrawerTransition.h

show

Shows the TKSideDrawer instance.

- (void)show

Declared In

TKSideDrawerTransition.h

transitionBegan:

Called when the transition is about to begin.

- (void)transitionBegan:(BOOL)showing

Parameters

showing

Determines if the sideDrawer is about to show or dismiss.

Declared In

TKSideDrawerTransition.h

transitionEnded:

Called when the transition ended.

- (void)transitionEnded:(BOOL)showing

Parameters

showing

Determines if the sideDrawer is shown or dismissed.

Declared In

TKSideDrawerTransition.h