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

页面跳转问题presentViewController

时间:2014-06-20 12:25:46      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:ios   页面跳转   presentviewcontrolle   

跳转页面的时候 我用的是 [self presentViewController:nLogin animated:NO completion:^{

        

    }];,有A到B再到C,我现在再C页面返回的时候我想直接跳转到A页面 应该怎么做呢?


在C中

//关掉自己

    [self dismissViewControllerAnimated:YES completion:^(){

        //关掉注册controller

        [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFICATION_CLOSE_B object:nil userInfo:nil];

    }];


在B中添加监视通知


[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(close) name:NOTIFICATION_CLOSE_B object:nil];


-(void) close{

 [self dismissViewControllerAnimated:YES completion:nil];

}





页面跳转问题presentViewController,布布扣,bubuko.com

页面跳转问题presentViewController

标签:ios   页面跳转   presentviewcontrolle   

原文地址:http://blog.csdn.net/xdrt81y/article/details/28393027

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