码迷,mamicode.com
首页 > 其他好文 > 详细

侧边栏效果

时间:2015-08-20 18:26:45      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

appDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    
    // 侧滑菜单效果
    MRMenu *menu = [[MRMenu alloc] init];
    MRContentViewController *contentVC = [[MRContentViewController alloc] init];
    MRContentNavigationController *contentNavigationController = [[MRContentNavigationController alloc] initWithRootViewController:contentVC];
    
    MVYSideMenuOptions *options = [[MVYSideMenuOptions alloc] init];
    MVYSideMenuController *sideMenuController = [[MVYSideMenuController alloc] initWithMenuViewController:menu contentViewController:contentNavigationController options:options];
    sideMenuController.view.backgroundColor = [UIColor whiteColor];
    // 设置菜单控制器为窗口的跟控制器
    self.window.rootViewController = sideMenuController;
    
    // 设置窗口为主窗口
    [self.window makeKeyAndVisible];
    
    return YES;
}

需要使用一下第三方框架:MVYSideMenu

 

侧边栏效果

标签:

原文地址:http://www.cnblogs.com/yuanjunliang/p/4745719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!