MFMailComposeViewController in iOS 7 statusbar are black

前端 未结 13 814
不知归路
不知归路 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

    Some times it will not update the status bar style properly. You should use

     [self setNeedsStatusBarAppearanceUpdate];
    

    To say iOS to refresh the status bar style, manually. Hope someone would save some time on knowing it.

    [self presentViewController:picker animated:YES completion:^{
        [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
         [self setNeedsStatusBarAppearanceUpdate];
    }];
    

提交回复
热议问题