MFMailComposeViewController bar background color not changing in iOS7

前端 未结 9 1477
情歌与酒
情歌与酒 2020-12-31 00:32

I\'m trying to change the background color of the MFMailComposeViewController in iOS7 but I cannot make it work.

I\'m

9条回答
  •  [愿得一人]
    2020-12-31 00:58

    try this. worked for me.

    MFMailComposeViewController* myailViewController = [[MFMailComposeViewController alloc] init];
    // set other attributes of mailcomposer here.
    myMailViewController.mailComposeDelegate = self;
    
    [myMailViewController.navigationBar setTintColor:[UIColor whiteColor]];
    
    [self presentViewController:myMmailViewController animated:YES completion:nil];
    

提交回复
热议问题