MFMailComposeViewController in iOS 7 statusbar are black

前端 未结 13 818
不知归路
不知归路 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-05 00:06

    What did the trick for me was:

    • Subclass MFMailComposeViewController
    • Override the two methods as described in answer 6

      -(UIStatusBarStyle)preferredStatusBarStyle;

      -(UIViewController *)childViewControllerForStatusBarStyle;

    • Override viewDidLoad as follows:

      -(void)viewDidLoad {
      [super viewDidLoad];
      [self preferredStatusBarStyle];
      [self setNeedsStatusBarAppearanceUpdate];
      }

提交回复
热议问题