代码视图与StoryBoard.Xib文件视图的跳转
Posted #零下一度&
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码视图与StoryBoard.Xib文件视图的跳转相关的知识,希望对你有一定的参考价值。
在storyboard中拖拽的控件,当我们使用纯代码进行编写的时候,进行跳转的时候用我们平时用的[self.navigationController popToViewController:Vc animated:YES], 你会发现跳转的后出现的页面只有你用用纯代码写的,而storyboard中的没有,这时候我们使用这个方法还是比较简单不能实现纯代码视图与StoryBoard.Xib视图跳转的问题;
可以常使用以下的方法:
UIStoryboard *story = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
HomeViewController *vc = [story instantiateViewControllerWithIdentifier:@"home"];
[self presentViewController:vc animated:YES completion:nil];记住Identifier后面的是你要跳转的视图对象。
HomeViewController *vc = [story instantiateViewControllerWithIdentifier:@"home"];
[self presentViewController:vc animated:YES completion:nil];记住Identifier后面的是你要跳转的视图对象。
以上是关于代码视图与StoryBoard.Xib文件视图的跳转的主要内容,如果未能解决你的问题,请参考以下文章
MacOS-MacAPP通过纯代码不依赖storyboard/xib加载UI主界面