Skip to content
This repository has been archived by the owner on Sep 11, 2022. It is now read-only.

Toggle between controllers #207

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions Source/PKRevealController/PKRevealController.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,27 @@ FOUNDATION_EXTERN NSString * const PKRevealControllerRecognizesResetTapOnFrontVi
+ (instancetype)revealControllerWithFrontViewController:(UIViewController *)frontViewController
rightViewController:(UIViewController *)rightViewController;



/**
Shifts the left view to the position that's best suited to present the desired controller's view. (Animates by default)

*/
- (void)showLeftViewController;

/**
Shifts the right view to the position that's best suited to present the desired controller's view. (Animates by default)

*/
- (void)showRightViewController;

/**
Shifts the front view to the position that's best suited to present the desired controller's view. (Animates by default)

*/
- (void)showFrontViewController;


/**
Shifts the front view to the position that's best suited to present the desired controller's view. (Animates by default)

Expand Down