【问题标题】:iOS 12.0 : Is there a way to set MFMailComposeViewController navigation bar title's text to white?iOS 12.0:有没有办法将 MFMailComposeViewController 导航栏标题的文本设置为白色?
【发布时间】:2019-02-26 07:15:03
【问题描述】:

目前,我还没有找到针对 iOS 12.0 执行此操作的方法。我试过像这样设置条形色调。

[mailController.navigationBar setTintColor:[UIColor whiteColor]];

然后,我尝试使用以下代码设置标题文本属性

   [mailController.navigationController.navigationBar setTitleTextAttributes:
 @{NSForegroundColorAttributeName:[UIColor WhiteColor]};

我尝试了更多在 StackOverflow 上找到的选项,但都没有奏效。我希望有人找到一种可靠的方法来更改导航栏标题文本颜色。无论我做什么,它都会保持黑色。栏按钮的颜色正确更改,但导航栏标题不正确。

【问题讨论】:

标签: ios objective-c navigationbar mfmailcomposeviewcontroller


【解决方案1】:

您能否尝试其中任何一种设置导航栏颜色的方法。例如:如果导航栏为黑色,则文字设置为白色。

[[UINavigationBar appearance] setBarStyle: UIBarStyleBlack]

[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-10-12
    相关资源
    最近更新 更多