4

无论我似乎尝试什么,在用户选择通过电子邮件发送链接(它是 a MFMailComposeViewController)时出现的电子邮件屏幕中,按钮始终是默认的蓝色。

我的 AppDelegate 中有这个:

[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:0.000 green:156/255.0 blue:51/255.0 alpha:1]];
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
[[UINavigationBar appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName: [UIColor whiteColor] }];

它确实为按钮的标题着色,MFMailComposeViewController但不是按钮。我该如何做到这一点?

当我在其他任何地方都有白色时,它也会使我的状态栏保持黑色。

4

2 回答 2

16
MFMailComposeViewController *mailController = [[MFMailComposeViewController alloc] init];
mailController.mailComposeDelegate = self;
[mailController setToRecipients: [NSArray arrayWithObjects:@"recipients", nil]];
[mailController setSubject: @"Contact Us"];
[mailController setMessageBody: @"Mail Body" isHTML:NO];
[[mailController navigationBar] setTintColor: [UIColor blackColor]]; //color
[self presentViewController: mailController animated:YES completion:^{
    [[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleBlackTranslucent];
}];

从 iOS 6 开始,MFMailComposeViewController(和其他一些视图控制器)在单独的进程中运行,因此它们不会继承您应用中使用的样式。假设您使用的是最新的 SDK,使用上述方法可能会有所帮助,至少可以在 iOS 7 上运行。您可以在此处阅读有关远程视图控制器的更多信息。

于 2013-11-01T23:47:28.413 回答
0

您可以在 AppDelegate 中为您的 UIBarButtonItems 设置全局色调颜色,以便 MFMailComposeViewController 将其用作自己按钮的颜色。

    let barButtonItemAppearance = UIBarButtonItem.appearance()
    barButtonItemAppearance.tintColor = KK.GRAPHICS.COLOR_WHITE
于 2018-03-03T15:22:23.763 回答