1
我有一個UINavigationBar
與圖像的色調來定製其外觀。但是,當我將郵件編輯器作爲模態視圖顯示時,將顯示默認的UINavigationBar
。任何建議如何我可以改變,以便我的自定義欄顯示?MFMailComposeViewController自定義UINavigationBar
我有一個UINavigationBar
與圖像的色調來定製其外觀。但是,當我將郵件編輯器作爲模態視圖顯示時,將顯示默認的UINavigationBar
。任何建議如何我可以改變,以便我的自定義欄顯示?MFMailComposeViewController自定義UINavigationBar
您可以直接訪問導航欄,如下所示:
MFMailComposeViewController *viewController = [[MFMailComposeViewController alloc] init];
viewController.navigationBar.tintColor = [UIColor blueColor]; ///< Or whatever colour you want to tint it/set the background image to, etc.