MFMailComposeViewController bar background color not changing in iOS7

前端 未结 9 1441
情歌与酒
情歌与酒 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 01:11

    First present the MFMailComposeViewController then change its tintColor

    [self presentViewController:emailDialog animated:TRUE completion:nil];
    
    [[UINavigationBar appearance] setBackgroundImage:nil 
                                      forBarPosition:UIBarPositionTopAttached 
                                          barMetrics:UIBarMetricsDefault];
    

提交回复
热议问题