タブバーコントローラーに問題があります。ストーリーボードを使用していて、タブバーコントローラーとビューコントローラーの間でナビゲーションコントローラーを使用しています。また、ログインページがあります。ログインページから、2.tabbarcontrollerであるビューコントローラーに直接移動したいのですが。これを行うと、タブバーコントローラーが表示されません。何が問題になる可能性がありますか?あなたの提案は何ですか?
self.tabBarController = [[UITabBarController alloc] init];
UIImage* tabBarBackground = [UIImage imageNamed:@"Tab_bar_bkg.png"];
[[UITabBar appearance] setBackgroundImage:tabBarBackground];
[[UITabBarItem appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"Helvetica" size:0.0], UITextAttributeFont,
nil] forState:UIControlStateNormal];
前もって感謝します..