从 iOS 5 开始,自定义背景图像很容易UINavigationBar
,但在设置背景图像时,我似乎缺少一些东西MFMailComposeViewController
。我使用以下代码段来设置MFMailComposeViewController
.
if ([MFMailComposeViewController canSendMail])) {
// Initialization
MFMailComposeViewController *vc = [[MFMailComposeViewController alloc] init];
[vc setModalPresentationStyle:UIModalPresentationFormSheet];
// Navigation Bar
[[vc navigationBar] setBackgroundImage:[UIImage imageNamed:@"navbar_top"] forBarMetrics:UIBarMetricsDefault];
// Configuration
[vc setMailComposeDelegate:self];
// Present Mail Compose View Controller
[self presentViewController:vc animated:YES completion:nil];
}
虽然条形按钮项目的外观正确,但邮件撰写视图控制器的导航栏却没有。我忽略了什么吗?