首页 > 其他 > 详细

抽屉框架的用法(转)

时间:2016-02-23 19:05:26      阅读:240      评论:0      收藏:0      [点我收藏+]

Drawer相比大家经常能看到,优点就不用赘言了。直奔主题,MMDrawerController(https://github.com/mutualmobile/MMDrawerController)是我觉得一款比较好用的Drawer开源实现。

具体使用方法

(1)pod‘MMDrawerController‘,‘~> 0.5.7‘,在您的podfile中加入了,然后运行pod install,以天朝对网速大概一杯??的功夫也就OK了。

(2)在项目中引入

#import "MMDrawerController.h"

(3)delegate

UINavigationController * lnav=[[UINavigationController alloc] initWithRootViewController:tvc];

UINavigationController * cnav=[[UINavigationController alloc] initWithRootViewController:tb];

UINavigationController * rnav=[[UINavigationController alloc] initWithRootViewController:rtb];

self.drawerController = [[MMDrawerController alloc]    initWithCenterViewController:cnav

leftDrawerViewController:lnav

rightDrawerViewController:nil];

 

(4)简单配置一下

[self.drawerController setRestorationIdentifier:@"MMDrawer"];

[self.drawerController setMaximumRightDrawerWidth:200.0];

[self.drawerController setOpenDrawerGestureModeMask:MMOpenDrawerGestureModeAll];

[self.drawerController setCloseDrawerGestureModeMask:MMCloseDrawerGestureModeAll];

最好上长效果图吧

 

技术分享

抽屉框架的用法(转)

原文:http://www.cnblogs.com/shiguangji728/p/5210853.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!