How do you change color/image on the default backBarButtonItem?
问题 I need to change color on the default "self.navigationItem.backBarButtonItem". To accomplish this I´ve created an custom Button class and implemented it like this: - (void)viewDidLoad { [super viewDidLoad]; BackButton *blueSaveButton = [[BackButton alloc] init]; UIBarButtonItem *temporaryBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:blueSaveButton]; temporaryBarButtonItem.title = @"Tillbaka"; self.navigationItem.backBarButtonItem = temporaryBarButtonItem; [temporaryBarButtonItem