タブバーContrllerとナビゲーションバーコントローラを統合する最も簡単な方法は、コードで作成することです。 (それは私がほとんど使用しているものです)
//Creating the navigation bar
//rVC is some root view controller you have on your code
UINavigationController *nav1 = [[UINavigationController alloc] init];
[nav1 pushViewController:rVC animated:YES];
nav1.navigationBar.barStyle = UIBarStyleBlack;
[rVC release];
//Creating the tab bar custom image and title
UITabBarItem *tab1 = [[UITabBarItem alloc] initWithTitle:@"Nav1" image:[UIImage imageNamed:@"nav1Image.png"] tag:1];
[nav1 setTabBarItem:tab1];
//making the navigation bar visible in the inside tab bar
UITabBarController *tabController = [[UITabBarController alloc] init];
tabController.viewControllers = [NSArray arrayWithObjects:nav1, nil];
希望します。 お気軽に
あなたの意見を表示している場所のコード/コンテキストを表示するために質問を編集してください。 – poupou