基本的な疑問があります。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 を使用して前のスタックを表示しない