2014-02-13 66 views
4

它只是我或在iOS 7中,你不能改變任何共享應用程序的文本顏色?例如,如果您打開郵件或iMessage應用程序,顏色會恢復爲默認藍色,還是有辦法更改此設置嗎?我一直未能。故障與UIActivityViewController

以下是一些屏幕截圖。

這裏是什麼樣子,我希望它看起來從MFMailComposerViewController打開郵件時,像什麼:

enter image description here

這裏是什麼樣子選擇UIActivityViewController共享應用程序時,請注意藍色的字體顏色選擇從UIActivityViewController郵件應用程序時:

enter image description here

我想改變字體顏色的原因爲b因爲很難閱讀文本字體,尤其是來自共享應用程序iMessage。

回答

-1

改變導航欄的背景顏色與

[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]]; 

使用setTintColor改變barbutton物品的顏色。

0

你試過嗎?

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

More Info