Crash with UIActivityViewController

Is it just me or in iOS 7, you can’t change the text color of any general application? For example, if you open Mail or iMessage applications, does the color return to the default by default or is there a way to change this? I could not.

Here are some screenshots. Pay attention to the blue color of the font when choosing the general UIActivityViewController application:

Here's what it looks like and what I want it to look when you open mail from MFMailComposerViewController:

enter image description here

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

enter image description here

The reason I want to change the font color is because it is difficult to read a text font, especially from the general iMessage application.

+4
2

?

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

0

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

setTintColor, .

-1

Source: https://habr.com/ru/post/1526810/


All Articles