我创建了一个Single view application
带有情节提要的,我拖放了一个TableView
. 我可以为 tableview 充气并获取一些数据,但是单击任何UITableViewCell
我需要转到下一个ViewController
。我将另一个拖放ViewController
到情节提要中并将其连接MainViewController
到新创建的ViewController
. didSelectRowAtIndexPath
我需要从方法中转到新的视图控制器
我试过用这个
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
TestViewController *test = [self.storyboard instantiateViewControllerWithIdentifier:@"Testing"];
[test performSegueWithIdentifier:@"Test" sender:self];
}
我收到此错误
2013-09-03 23:33:21.234 Storyboard[946:c07] * 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“Storyboard () 不包含标识符为“Testing”的视图控制器”*第一次抛出调用stack: (0x1c92012 0x10cfe7e 0x45b679 0x2f14 0xc3285 0xc34ed 0xacd5b3 0x1c51376 0x1c50e06 0x1c38a82 0x1c37f44 0x1c37e1b 0x1bec7e3 0x1bec668 0x13ffc 0x28ed 0x2815) libc++abi.dylib: terminate called throwing an exception
我也试过
[test performSegueWithIdentifier:@"Test" sender:self];
但我找不到合适的代码。任何帮助表示赞赏。