我想设置一个事件,当我们选择任何行时,当用户点击行然后用户返回第一个视图时,类似地打开一个新视图。例如,用户在主视图中有按钮,单击该按钮然后打开表视图。当用户单击任何行时,导航控制器将视图推回到不在前视图中的主视图。如何在我的项目中实现此事件?
答案 0 :(得分:3)
在表格视图中,委托didSelectRowAtIndexPath
使用 -
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.navigationController popViewControllerAnimated:TRUE];
}