storyboard中设置了两个界面。
在代码中使用
[self.navigationController pushViewController:[[SCMainViewController alloc]init] animated:YES];
怎么跳转过去没有加载啊
不能再用纯代码方式去跳转了吗。。只能用segue吗
習慣沉默2017-05-17 10:07:01
可以跳转的,感觉你的 Stroyboard
上相对应的 ViewController
没有关联 Class
- SCMainViewController
。
漂亮男人2017-05-17 10:07:01
先要在storyBoard里面填好StoryBoard ID
然后使用下面的代码加载viewController:
UIViewController *listController = [[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"listViewController"];