我正在编写一个由导航控制器组成的简单笔记应用程序。根视图有一个表格视图,当点击它时,它会推送到第二个视图。单击的行的名称然后将传递给第二个视图控制器并用作导航栏中的标题。
现在,当我运行代码时,breakpoint
当我单击表格视图项时,应用程序会到达 a。使用以下方法breakpoint
指向从底部开始的第二行prepareForSegue
:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"showNote"])
{
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
// JAYShowNoteViewController *destViewController = segue.destinationViewController;
// destViewController.noteName = [allNotes objectAtIndex:indexPath.row];
JAYShowNoteViewController *destination = [segue destinationViewController];
destination.noteName = [allNotes objectAtIndex:indexPath.row];
}
}
我自己做了很多搜索和编辑,但我找不到解决这个问题的方法。