how to customize navigationbar color of MFMailComposeViewController?

Posted by RAGOpoR on Stack Overflow See other posts from Stack Overflow or by RAGOpoR
Published on 2010-03-08T08:03:51Z Indexed on 2010/03/08 8:06 UTC
Read the original article Hit count: 476

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:@"[email protected]",nil]];
        [mail setSubject:@"support"];
        [mail setMessageBody:@"enter your message here" isHTML:NO];
        [self presentModalViewController:mail animated:YES];
    }

© Stack Overflow or respective owner

Related posts about mfmailcomposeviewcontroll

Related posts about iphone