我有一个链接到UITableView实例的新View Controller,因此点击表中的条目会将我带到该视图控制器。我现在如何将点击的条目的标题传递给新的视图控制器?
答案 0 :(得分:0)
在委托方法didSelectRowAtIndexPath中,请输入此代码。
newVC *vc = [[newVC alloc] init];
vc.title = [ yourTableDataSource objectAtIndex:indexPath.row]
// push the VC on navigation.
“yourTableDataSource”将是您必须用于确定单元格值的数组。所以要相应地使用。
希望有所帮助。