MFMailComposeViewController in iOS 7 statusbar are black

前端 未结 13 787
不知归路
不知归路 2020-12-04 23:20

i have a feedback button in my ios 7 application with MFMailComposeViewController. After the user click this button the mailcomposer open but the statusbar changed to black.

13条回答
  •  抹茶落季
    2020-12-04 23:58

    None of above answers are work for me.

    I have two issues.

    1. Black status bar
    2. transparent layer on title bar

    enter image description here

    Solution

    1. Black status - I remove all navigation bar customization

      // comment below line in AppDelegate

      [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"nav_bg"] forBarMetrics:UIBarMetricsDefault];

    2. Transparent title bar - set navigationBarHidden = Yes for MFMailComposeViewController

      composeViewController.navigationBarHidden = YES;

提交回复
热议问题