IOS-MFMailComposeViewController自定义NavBar
1、NavBar背景图片及barbuttonItem的颜色设置:
picker.navigationBar.tintColor = [UIColor colorWithRed:209.0/255 green:183.0/255 blue:126.0/255 alpha:1.0];
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 5.0) {
[picker.navigationBar setBackgroundImage:[UIImage imageNamed:@"nav_bg.png"] forBarMetrics:UIBarMetricsDefault];
}
2、其title为邮件的subject(主题),不可修改;
3、界面背景不可修改。