我将主页面设置为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;
答案 0 :(得分:0)
呼叫
[self.navigationController popViewController animated:YES];