Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 944 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 944 Bytes

YiSlideMenu

SlideMenu,简洁的侧边菜单,清爽风格。

YiSlideView是用UIScrollView实现的侧边菜单,左菜单、右菜单以及中间视图加在UIScrollView上。

iOS Slide Menu with ability to add both left and right menu, and built in UIScrollView.

使用方法

YiSlideMenu *slideMenu = [[YiSlideMenu alloc] initWithFrame:CGRectMake(0, 0, WScreen, HScreen)];
[self.view addSubview:slideMenu];
slideMenu.slideMenuDelegate=self;
slideMenu.navTitleLabel.text=@"YiSlideMenu";

UITableView *tableView=[[UITableView alloc] initWithFrame:CGRectMake(0, 0 , WScreen, HScreen-64) style:UITableViewStylePlain];
[slideMenu.centerView addSubview:tableView];

YiRefresh

YiRefresh