首页 > 其他 > 详细

页面跳转问题presentViewController

时间:2014-06-20 12:19:35      阅读:455      评论:0      收藏:0      [点我收藏+]
跳转页面的时候 我用的是 [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

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

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