页面跳转问题presentViewController

时间:2014-06-20 12:25:46   收藏:0   阅读:237
跳转页面的时候 我用的是 [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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!