使用UIActivityViewController进行故障

时间:2014-02-13 20:14:27

标签: ios objective-c ios7 uiactivityviewcontroller

只是我或在iOS 7中你能改变任何共享应用程序的文本颜色吗?例如,如果您打开Mail或iMessage应用程序,颜色是否会恢复为默认蓝色或是否有办法更改此设置?我无法做到。

以下是一些屏幕截图。选择UIActivityViewController共享应用程序时,请注意蓝色字体颜色:

以下是从MFMailComposerViewController打开邮件时的样子以及我想要的样子:

enter image description here

以下是从UIActivityViewController中选择邮件应用程序时的样子:

enter image description here

我想更改字体颜色的原因是因为很难读取文本字体,尤其是来自共享应用程序iMessage。

2 个答案:

答案 0 :(得分:0)

你试过这个吗?

[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTintColor:[UIColor whiteColor]];

Self-sizing Table View Cells

答案 1 :(得分:-1)

使用

更改导航栏的背景颜色
[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];

使用setTintColor更改条形图项的颜色。