У меня есть кнопка обратной связи в моем приложении 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:@"[email protected]",nil]];
dispatch_async(dispatch_get_main_queue(), ^{
[self presentModalViewController:mailController animated:YES];
}