如何从详细视图页面iphone sdk返回UITableView页面

时间:2010-08-06 20:10:50

标签: iphone uitableview uinavigationcontroller

我将主页面设置为UITableView。我已将其设置为可以单击一行,然后转到详细信息页面,其中有一个UIButton(保存按钮),我希望该应用程序返回到原始页面。我知道它会自动将左栏按钮项设置为返回按钮,但我需要在视图的主要部分使用UIButton。以下是用于初始化详细信息视图的代码。

addInputViewController *addV = [[addInputViewController alloc] initWithNibName:@"addInputViewController" bundle:[NSBundle mainBundle]];
    addV.selectedCountry = selectedCountry;
    [self.navigationController pushViewController:addV animated:YES];
    [addV release];
    addV = nil;

1 个答案:

答案 0 :(得分:0)

呼叫

 [self.navigationController popViewController animated:YES];