storyboard中设置了两个界面。
在代码中使用
[self.navigationController pushViewController:[[SCMainViewController alloc]init] animated:YES];
怎么跳转过去没有加载啊
不能再用纯代码方式去跳转了吗。。只能用segue吗
小伙看你根骨奇佳,潜力无限,来学PHP伐。
雷雷
可以跳转的,感觉你的 Stroyboard 上相对应的 ViewController 没有关联 Class - SCMainViewController。
Stroyboard
ViewController
Class
SCMainViewController
先要在storyBoard里面填好StoryBoard ID
然后使用下面的代码加载viewController:
UIViewController *listController = [[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"listViewController"];
1.绑定类
2.push
雷雷
可以跳转的,感觉你的
Stroyboard
上相对应的ViewController
没有关联Class
-SCMainViewController
。雷雷
先要在storyBoard里面填好StoryBoard ID
然后使用下面的代码加载viewController:
1.绑定类
2.push