在路径上似乎没有有效的故事板

时间:2014-05-30 12:26:08

标签: ios storyboard

在故事板中转换到另一个视图控制器时遇到了崩溃。 单击一个条形按钮即可进行转换。崩溃不会每次都发生,它只发生在第三次或第四次重复转换。

我正在做这样的过渡

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main_iPhone" bundle:nil];
ScanToMatchViewController *stmVC = [storyboard instantiateViewControllerWithIdentifier:@"ScanToMatch"];
stmVC.fieldModel = self.fieldModel;
[self.navigationController pushViewController:stmVC animated:YES];

点击导航栏上的栏按钮时。条形码按钮添加在代码中,因为故事板上的视图控制器没有显示导航栏。

UIBarButtonItem *saveButton=[[UIBarButtonItem alloc] initWithTitle:@"Save" style:UIBarButtonItemStyleDone target:self action:@selector(saveScanClicked)];
self.navigationItem.rightBarButtonItem = saveButton;

任何可能出现问题的想法都将受到赞赏。

0 个答案:

没有答案