我想从ViewController加载一个故事板。目前我的代码如下:
- (IBAction)Button_Action:(id)sender
{
UIStoryboard * sb = [UIStoryboard storyboardWithName:@"AddReportView" bundle:nil];
AddReportViewVC * vc = [sb instantiateViewControllerWithIdentifier:@"AddReportView"];
[self.navigationController pushViewController:vc animated:true];
}
视图被推送但我没有看到我期望的View Controller(它是一个UITableViewController)而是我只看到一个空的灰色视图控制器。
答案 0 :(得分:0)
请记住,在标识符名称和故事板名称中,大小写很重要。我这么多次弄错了......
答案 1 :(得分:0)
问题是xcode生成的代码的功能使表视图控制器刷新内容。