我的 ios 7 应用程序中有一个带有 MFMailComposeViewController 的反馈按钮。用户单击此按钮后,mailcomposer 打开,但状态栏变为黑色。有人知道我能做什么吗?
我只有ios7才有这个问题。我为 ios7 定制我的应用程序。
MFMailComposeViewController *mailController = [[MFMailComposeViewController alloc] init];
mailController.mailComposeDelegate = self;
[mailController setSubject:@"Feedback"];
// Fill out the email body tex
NSString *emailBody = [NSString stringWithFormat:@"testest"],
[UIDevice currentDevice].model,
[UIDevice currentDevice].systemVersion];
[mailController setMessageBody:emailBody isHTML:NO];
[mailController setToRecipients:[NSArray arrayWithObjects:@"support@test.com",nil]];
dispatch_async(dispatch_get_main_queue(), ^{
[self presentModalViewController:mailController animated:YES];
}