单击表视图行时如何推回视图?

时间:2011-08-29 04:41:12

标签: iphone uitableview uinavigationcontroller pushviewcontroller

我想设置一个事件,当我们选择任何行时,当用户点击行然后用户返回第一个视图时,类似地打开一个新视图。例如,用户在主视图中有按钮,单击该按钮然后打开表视图。当用户单击任何行时,导航控制器将视图推回到不在前视图中的主视图。如何在我的项目中实现此事件?

1 个答案:

答案 0 :(得分:3)

在表格视图中,委托didSelectRowAtIndexPath使用 -

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
    [self.navigationController popViewControllerAnimated:TRUE];
}