TTThumbsViewController を UITabBarController 内に配置しようとしていますが、そうすると、TTThumbsViewController の NavigationBar が表示されません。NavigationBar があるはずの空白スペースがあります。TTThumbsViewController だけを読み込んだところ、NavigationBar は問題なく読み込まれました。設定を見逃しただけだと確信していますが、それが何であるかわかりません。
UITabBarController と TTThumbsViewController を作成するために私が行っていることは次のとおりです。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.tabBarController = [[UITabBarController alloc] init];
ThumbsViewController *thumbsViewController = [[ThumbsViewController alloc] init];
UITabBarItem *thumbsTabBarItem = [[UITabBarItem alloc] initWithTitle:@"Thumbs" image:[UIImage imageNamed:@"icon.png"] tag:Thumbs];
thumbsViewController.tabBarItem = thumbsTabBarItem;
self.tabBarController.viewControllers = [NSArray arrayWithObjects:thumbsViewController, nil];
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
return YES;
}