MFMailComposeViewController bar background color not changing in iOS7

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

    Try the following code

        - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        [[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];
        [[UINavigationBar appearance] setBackgroundColor:[UIColor blackColor]];
    
        // Your usual code follows here ......
    

提交回复
热议问题