from this code will show in original color how can i change it to another color?
maybe it need to be override?
MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
mail.mailComposeDelegate = self;
if ([MFMailComposeViewController canSendMail]) {
[mail setToRecipients:[NSArray arrayWithObjects:@"me@gmail.com",nil]];
[mail setSubject:@"support"];
[mail setMessageBody:@"enter your message here" isHTML:NO];
[self presentModalViewController:mail animated:YES];
}
I haven’t done this so take this answer with appropriate caution.
MFMailComposeViewControllerinherits fromUINavigationController. That means it’ll have anavigationBarproperty. Once you have the navigationBar you can modify itstintColorproperty.