UIBarButtonItem Title Text is Always Global Tint Color
问题 iOS 7.0 and up. In AppDelegate.m, I'm setting my global tintColor: self.window.tintColor = myGlobalTintColor; . In my table view controller where I want a red trash can button in the navigation bar while editing the table view cells, I have this: - (void)setEditing:(BOOL)editing animated:(BOOL)animate { [super setEditing:editing animated:animate]; if (editing) { // Start editing self.deleteBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemTrash target