I add a bar button to the navigation bar programitically as follows
UIBarButtonItem *cancel = [[UIBarButtonItem alloc] initWithTitle:@"CANCEL" style:UIBarButtonItemStyleBordered target:self action:@selector(goToPreviousView)];
self.navigationItem.leftBarButtonItem = cancel;
Now I want to display Text "CANCEL" in RED Color.
I mean that I need to change the text on the bar button items, but not the tint color of the button.
How to do that?