私のアプリケーションでは、5つのタブバーアイテムがあります。 2番目のタブバーの項目で、そのタブで何らかの操作を実行すると、1番目のタブのコントローラーを取得して1番目のタブに移動する必要があります。どうすればこれを達成できますか? 2番目のタブバー1つのタブバーアイテムのnavControllerを別のタブバーアイテムに取得する方法
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
FirstViewController *firstView = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
[self.navigationController pushViewController:firstView animated:YES];
[firstView release];
}
あなたはこれについてさらに詳しく教えてください。ありがとう。 –