IOS7 navigatinBar tintColor change in popover

前端 未结 2 1229
情书的邮戳
情书的邮戳 2021-01-04 23:36

I developed iPad application. I\'m opening some screens in popover with navigation controller. But I did not change navigationcontroller tint color in IOS 7. How can I chang

2条回答
  •  [愿得一人]
    2021-01-05 00:16

    Setting the NavigationBarStyle to UIBarStyleBlack also worked for me, but only via the Storyboard.

    I tried

    [[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
    

    as well as

    [[UINavigationBar appearanceWhenContainedIn:[UIPopoverController class], nil] setBarStyle:UIBarStyleBlack];
    

    in the didFinishLaunchingWithOptions AppDelegate method. But nothing changed. Only changing the BarStyle of the NavigationControllers NavigationBar inside the Storyboard worked.

提交回复
热议问题