在我的故事板中,我有根 ViewController,它是表 ViewController,另一个是 ViewController。现在有了原型单元,我已经将 ViewController 与 push segue 连接起来。现在我想在 ViewController 中进行一些导航,即添加按钮图像视图等。但是这些更改不适用于 ViewController。问题是什么?即使我已经从单元格中断开了 segue,但是当我单击单元格时,仍然会显示视图。
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
//Detail *d = [[Detail alloc] init];
if ([[segue identifier] isEqualToString:@"detail"]) {
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
d = [segue destinationViewController];
d.idd = [array2 objectAtIndex:indexPath.row];
//detailViewController.treeData = [self.ds objectAtIndex:[self.tableView indexPathForSelectedRow].row];
}
}