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];
  描述:在子视图返回到上级视图
  以后会不断更新。 

相关文章:

  • 2022-12-23
  • 2021-09-01
  • 2021-10-28
  • 2021-10-15
  • 2021-07-12
  • 2021-10-03
  • 2022-01-24
  • 2022-12-23
猜你喜欢
  • 2022-01-17
  • 2021-08-03
  • 2021-09-14
  • 2021-12-31
  • 2021-12-04
  • 2022-12-23
相关资源
相似解决方案