0

タブバーコントローラーに問題があります。ストーリーボードを使用していて、タブバーコントローラーとビューコントローラーの間でナビゲーションコントローラーを使用しています。また、ログインページがあります。ログインページから、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];

前もって感謝します..

4

1 に答える 1

0

ついに私はこれに対する解決策を見つけました。問題はこれを使用する代わりにでした:

 [self dismissModalViewControllerAnimated:YES];

私はそれを使用しました:

[self presentModalViewController:controller animated:YES]

手伝ってくれてどうもありがとう...

于 2012-10-30T11:09:58.567 に答える