views:

94

answers:

1

i want to change the navigation bar of MFMailComposeViewController to black color.

how can i change.

+3  A: 

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

MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.navigationBar.barStyle = UIBarStyleBlack;
Vladimir
you were a little faster than me ^^.
Johannes Rudolph