I have this code, it creates a blue trash can icon on the navigation bar, I want to change the color of this icon to black. how can i do it? Here is my code:
//add trash button to navigation bar
UIBarButtonItem *myTrash = [[UIBarButtonItem alloc] initWithBarButtonSystemItem: UIBarButtonSystemItemTrash
target: self
action: @selector(deleteHandler)];
NSArray* barButtons = [self.navigationItem.rightBarButtonItems arrayByAddingObject: myTrash];
self.navigationItem.rightBarButtonItems = barButtons;