すべてのビューでタブバーを使用するiPhoneアプリケーションがあります。また、最初のビューコントローラにはnavigationBarControllerがありませんが、2番目のビューとタブバーにはあります。
2番目のViewControllerはテーブルビューであり、セルの1つをクリックすると、最初のView Controllerに移動します(パラメーターを渡します)。
私はいくつかの方法を試しましたが、すべてうまくいきましたが、そうではありません。
secondViewController.m
FirstViewController *firstViewController = [[FirstViewController alloc] initWithNibName:@"FirstView" bundle:[NSBundle mainBundle]];
[firstViewController passThisAlong:@"id"];
//[self presentViewController:firstViewController animated:YES completion:nil]; //1
[self.navigationController pushViewController:firstViewController animated:YES]; //2
//[self.tabBarController presentViewController:firstViewController animated:YES completion:nil]; //3
[firstViewController release];
firstViewController = nil;
上記のように、最初のViewControllerに到達するための3つの異なる方法を試しました。2番目のビューは最初のビューをロードし、2番目のビュー内にドリルダウンします。これは、nagigationBarController(最初のビューにはありませんが)と2番目のビューへの戻るボタンを保持するためです。
他の2つは互いに同じことをします。これは最初のビュー(ナビゲーションバーなし)に移動しますが、タブバーはなく、最初のビューのコンテンツはタブバーの高さの周りにシフトアップされており、その場所はただの黒さです。
これがすべて理にかなっていることを願っています。誰かがテーブル内のセルを選択したときの2番目のビューから、タブバーのアイコンをクリックしたかのように最初のビューに移動できるようにしたいだけです。
'On iPhone and iPod touch, the presented view is always full screen. On iPad, the presentation depends on the value in the modalPresentationStyle property.'
これが私の問題に関連しているかどうか、もしそうなら、それを回避する方法があるかどうかわからないドキュメントを見てきまし
た。
どうもありがとう、