Iphone 视图跳转方法总结

2018-04-12 15:49:04 浏览数 (1)

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];

  描述:在子视图返回到上级视图

  以后会不断更新。

0 人点赞