ios - A控制器跳转B控制器,B黑屏?
天蓬老师
天蓬老师 2017-05-31 10:33:00
0
3
838

1.storyBoard中有2个VC,分别套了导航。

2.AVC跳转BVC的方法,button连线的方法

- (IBAction)clickBtnToBvc:(id)sender {
    BViewController *vc = [[BViewController alloc]init];
    [self.navigationController pushViewController:vc animated:YES];
}

3.BVC黑屏,请问是什么原因?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

全部回复(3)
世界只因有你

你的B是在storyboard中创建的并绑定控件,所以要从storyboard加载

BViewController * vc = [[UIStoryboard storyboardWithName:@"storyboard" bundle:nil] instantiateViewControllerWithIdentifier:@"IDENTITY"];
[self.navigationController pushViewController:vc animated:YES];
洪涛

尝试一下给BViewController的view设置一个背景颜色

给我你的怀抱

把b的导航删掉

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!