【发布时间】:2012-09-14 09:43:15
【问题描述】:
从 iOS 5 开始,自定义UINavigationBar 的背景图像很容易,但是在为MFMailComposeViewController 设置背景图像时,我似乎缺少了一些东西。我使用下面的sn-p来设置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];
}
虽然条形按钮项的外观正确,但邮件撰写视图控制器的导航栏却没有。我是否忽略了什么?
【问题讨论】:
标签: ios ios5 uinavigationbar mfmailcomposeviewcontroller