我正在尝试通过单击表格单元格从 UITableView 移动到 UIView。我正在使用手动 Segue,它连接到 UITableView 的视图控制器,然后用给定的名称连接到 UIView 的视图控制器。
我用这个来称呼它:
[self performSegueWithIdentifier:@"todoEditSegue" sender:self];
但我得到这个错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Receiver (<TodosViewController: 0x6e47230>) has no segue with identifier 'todoEditSegue''
Segue 肯定在那里,我正在使用故事板。
有什么想法可以让我尽快工作吗?