我有一个基本的疑问。我需要推viewController
到另一个viewController
。我正在尝试代码
Display1 *ac =[[Display1 alloc]init];
[[self navigationController]pushViewController:ac animated:YES];
这提供了导航到上一个堆栈的选项。我没有选择继续上一个堆栈。因此我尝试了presentModalViewController
Display1 *ac =[[Display1 alloc]init];
[self presentModalViewController:ac animated:YES];
但这很好用,这个没有给我选项,但是presentModalViewController 隐藏了我的 UITabBarController
.无论如何,用presentModalViewController显示UITabBarController。或使用 pushViewController 不显示以前的堆栈