Changing Title bar theme to blue for MFMailComposeViewController
I am using MFMailComposeViewController in my app, it shows a black title bar, how can i show its title bar with blue background theme开发者_如何学Go?
Try this :
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.navigationBar.barStyle = UIBarStyleDefault;
精彩评论