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

如何在present出来的viewController里使用push方法

时间:2014-08-20 19:46:03      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   os   io   for   ar   line   

   

MenuViewController * menuViewController = [[MenuViewController alloc] init];

    menuViewController.delegate = self;

    UIViewController * controller = self.view.window.rootViewController;

    controller.modalPresentationStyle = UIModalPresentationCurrentContext;

    menuViewController.view.backgroundColor = [UIColor clearColor];

    menuViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;

    UINavigationController * jackNavigationController = [[UINavigationController alloc] initWithRootViewController:menuViewController];

imageNamed:@"navigationBar_bg.png"] forBarMetrics:UIBarMetricsDefault];

    [self presentViewController:jackNavigationController animated:YES completion:^{

     }];

这样你就可以在present出来的viewController里畅通使用push方法退出其他界面了。

对了,

UIViewController * controller = self.view.window.rootViewController;

    controller.modalPresentationStyle = UIModalPresentationCurrentContext;

这两句是在第二个UIViewController中可以设置alph看到第一个UIViewController的界面;也就是第一个UIViewController作为背景了,,,

如何在present出来的viewController里使用push方法,布布扣,bubuko.com

如何在present出来的viewController里使用push方法

标签:style   color   使用   os   io   for   ar   line   

原文地址:http://my.oschina.net/LangZiAiFer/blog/304869

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