美文网首页
iOS 之页面纯代码与Storyboard的跳转

iOS 之页面纯代码与Storyboard的跳转

作者: ZhangXiaoxx | 来源:发表于2017-11-07 17:31 被阅读0次

//将我们的storyBoard实例化,“Main”为StoryBoard的名称

UIStoryboard *mainStoryBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];

 //将第二个控制器实例化,"main"为我们设置的控制器的ID

UIViewController *vc=[mainStoryBoard instantiateViewControllerWithIdentifier:@"main"];


 //跳转

[self.navigationController pushViewController:vc animated:YES];

相关文章

网友评论

      本文标题:iOS 之页面纯代码与Storyboard的跳转

      本文链接:https://www.haomeiwen.com/subject/krijmxtx.html