0
在UITableView的故事板中添加了一個名爲bSegue的segue,而bSegue標識符的類名是abcViewController。故事板不包含標識符爲'bSegue'的視圖控制器
在代碼寫入它作爲
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UIViewController *viewController;
switch (indexPath.row) {
case PDF:
viewController = [self.storyboard instantiateViewControllerWithIdentifier:@"bSegue"];
break;
default:
viewController = [[UIViewController alloc] init];
}
[self.navigationController pushViewController:viewController animated:YES];
}
但試圖運行應用程序時,它示出了錯誤NSInvalidArgumentException「的,原因是:」故事板()不包含具有識別符‘bSegue’
視圖控制器我再次檢查它segue標識符是正確的,那麼爲什麼它給這個錯誤。
任何想法。
感謝
感謝感謝您的輸入。有效。 – user1120133