我有UIViewController
我正在使用它作为信息页面。我如何回到信息页面上访问的最后UIViewController
?
- (IBAction)back:(id)sender
{
TennisMatch4ViewController *switcher = [[TennisMatch4ViewController alloc] initWithNibName:nil bundle:nil];
switcher.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:switcher animated:YES];
}
答案 0 :(得分:0)
您所要做的就是致电:
[[self navigationController] popViewControllerAnimated:NO];
这将删除当前视图并返回当前视图之前的视图。