我有一个UINavigationBar
,其图像的色调可以自定义其外观。但是,当我将邮件编辑器作为模态视图呈现时,将显示默认的UINavigationBar
。有任何建议我如何更改,以便显示我的自定义栏?
答案 0 :(得分:2)
您可以直接访问导航栏:
MFMailComposeViewController *viewController = [[MFMailComposeViewController alloc] init];
viewController.navigationBar.tintColor = [UIColor blueColor]; ///< Or whatever colour you want to tint it / set the background image to, etc.