Change navigation button color in MFMailComposerViewController on iOS 7
问题 I'm trying to change the text color for navigation buttons in a MFMailComposerViewController but it doesn't work like on iOS 6. In iOS 6 it worked with UIAppearance like this: // Navigation button UIBarButtonItem *barButton = [UIBarButtonItem appearance]; NSDictionary *barButtonTitleTextAttributes = @{UITextAttributeTextColor: [UIColor redColor]}; NSDictionary *disabledBarButtonTitleTextAttributes = @{UITextAttributeTextColor: [UIColor grayColor]}; [barButton setTitleTextAttributes