boerhani / TINavigationMenuView

Vertical breadcrumb navigation menu with clear app menu animation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TINavigationMenuView

Vertical breadcrumb navigation menu view

TINavigationMenuView

USAGE

  1. Add below files to your project
TIMenuCell.h
TIMenuCell.m
TIMenuDelegate.h
TIMenuTableView.h
  1. Set delegate on your view or view controller and assign its delegate
#import "TIMenuDelegate.h"
@interface TISimpleMenuController : UIViewController <TIMenuDelegate>
{
}
@end
  1. Customize your menu design and data
- (void)didSelectCell:(TIMenuCell *)selectedCell hasChild:(BOOL)hasChildMenu;
- (TIMenuCell *)menuCellForData:(NSDictionary *)menuData;
- (NSArray *)childMenuForData:(NSDictionary *)menuData;
- (TIMenuCell *)applyRootButtonTheme:(TIMenuCell *)passedRootButton;
  1. For more samples, see Demo view controller

About

Vertical breadcrumb navigation menu with clear app menu animation

License:MIT License