整个应用中都有白色tintColor。
请参阅取消按钮。是白色的。
我们如何改变它的颜色?
最佳答案
您可以通过更改[UIBarButtonItem外观]来执行此操作,例如:
NSDictionary *textAttributes = @{UITextAttributeTextColor: [UIColor blackColor]};
[[UIBarButtonItem appearance] setTitleTextAttributes:textAttributes forState:UIControlStateNormal];
关于ios - 更改通过ActivityView打开的电子邮件对话框上的颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20638846/