4

Is it just me or in iOS 7 can you not change the text colour of any shared application? For example, if you open up the Mail or iMessage apps does the colour go back to default blue or is there a way to change this? I haven't been able to.

Here are some screen shots. Notice the blue font colour when choosing the UIActivityViewController shared application:

Here is what it looks like and what I want it to look like when opening mail from MFMailComposerViewController:

enter image description here

Here's what it looks like when choosing the mail app from the UIActivityViewController:

enter image description here

The reason I want to change the font colour is because it's hard to read the text font, especially from the shared application iMessage.

Bobi
  • 437
  • 1
  • 8
  • 20

2 Answers2

0

Have you tried this?

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

More Info

Community
  • 1
  • 1
Joe
  • 3,664
  • 25
  • 27
-1

Change the Background color of the Navigation Bar with

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

Use setTintColor to change the color of the barbutton items.

AlexVogel
  • 10,601
  • 10
  • 61
  • 71
Amjad
  • 11
  • 1
  • 2