开发者

how can i change the navigation bar of MFMailComposeViewController?

开发者 https://www.devze.com 2022-12-20 12:19 出处:网络
i want开发者_JAVA百科 to change the navigation bar of MFMailComposeViewController to black color.

i want开发者_JAVA百科 to change the navigation bar of MFMailComposeViewController to black color.

how can i change.


Note that MFMailComposeViewController inherits from UINavigationController so it also has navigationBar property.

MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.navigationBar.barStyle = UIBarStyleBlack;


I know this post is quite dated but for someone who might find it useful, try:

MFMailComposeViewController *mailController  = [MFMailComposeViewController new];

[mailController.navigationBar setTintColor:[UIColor colorWithHue:240.0f/359.0f
                                                      saturation:85.0f/100.0f 
                                                      brightness:60.0f/100.0f 
                                                           alpha:0.0f]];
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号