Iphone 视图跳转方法总结

1.AddInfo *control = [[AddInfo alloc] init];
  [self presentModalViewController:control animated:YES];
  [control release];
  描述:通过事件进行跳转
  [self dismissModalViewControllerAnimated:YES];
  描述:通过事件进行返回。
  2.[self.navigationController pushViewController:subTableViewController animated:YES];
  描述:通过 NSNavigationBar 进行跳转
  [self.navigationController popViewControllerAnimated:YES];
  描述:在子视图返回到上级视图
  以后会不断更新。 
原文地址:https://www.cnblogs.com/neozhu/p/2351252.html