我正在使用 MFMailComposeViewController。我无法将导航栏背景图像添加到 ios7 上的 MFMailComposeViewController。我的代码在 ios7 之前工作。但在 ios7 上不起作用。如何将导航栏背景图像添加到 ios7 上的 MFMailComposeViewController?
MFMailComposeViewController *mailCompose = [[MFMailComposeViewController alloc] init];
mailCompose.mailComposeDelegate = self;
[mailCompose setSubject:@"SubjectName"];
[mailCompose setMessageBody:shareBodyString isHTML:NO];
if ([self respondsToSelector:@selector(presentViewController:animated:completion:)])
{
[self presentViewController:mailCompose animated:YES completion:nil];
}
else {
[self presentModalViewController:mailCompose animated:YES];
}
[mailCompose.topViewController.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"navigationbar-background.png"] forBarMetrics:UIBarMetricsDefault]; // working before ios7