TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
PaperFoldMenuController is a UITabBarController replacement, but displays the view controllers in a table view on the left side of the screen. This table view is shown/hidden using PaperFold-for-iOS. Selecting from the menu on the left changes the view controller on the right. PaperFoldMenuController uses view controller containment.
Initialize PaperFoldMenuController
- (id)initWithMenuWidth:(float)menuWidth numberOfFolds:(int)numberOfFolds
This value specifies the width of the table view in the left menu
This value specifies the number of folds in the menu table view
Sets the root view controllers. Title for each view controllers appears in the menu table view
- (void)setViewControllers:(NSMutableArray *)viewControllers
The array of custom view controllers to display on screen. The title of each view controllers are shown in the menu table view on the left.
Sets the current root view controller in contentView by index
- (void)setSelectedIndex:(NSUInteger)selectedIndex
An integer value which is the index of the root view controller in the viewControllers array.
Show or hide the menu table view.
- (void)showMenu:(BOOL)show animated:(BOOL)animated
A boolean value to indicate if the menu should be shown or hidden
A boolean value to indicate if the folding/unfolding should be animated
This method is automatically called with show=YES and animated=YES when a cell in menu table view is selected.
Ask the delegate whether the specified view controller should be made active
- (BOOL)paperFoldMenuController:(PaperFoldMenuController *)paperFoldMenuController shouldSelectViewController:(UIViewController *)viewController
The paperfold menu controller containing the viewController.
The view controller selected in the menu
The paperfold menu controller calls this method in response to the user tapping on the left menu. You can use this method to dynamically decide whether the view controller should be made active.
The paperfold menu controller calls this method in response to the user tapping the left menu, after the viewController is made active.
- (void)paperFoldMenuController:(PaperFoldMenuController *)paperFoldMenuController didSelectViewController:(UIViewController *)viewController
The paperfold menu controller containing the viewController.
The view controller selected in the menu
Ask the delegate if the menu table view should be folded to reveal the selected view controller
- (BOOL)paperFoldMenuController:(PaperFoldMenuController *)paperFoldMenuController shouldFoldMenuToRevealViewController:(UIViewController *)viewController;
The paperfold menu controller containing the viewController.
The view controller selected in the menu
This project uses ARC. If you are not using ARC in your project, add '-fobjc-arc' as a compiler flag for all the files in this project.
XCode 4.4 is required for auto-synthesis.
iOS 5.0 and above is required because the project uses view controller containment.