I'm trying for hours to make a left button work properly and mimic a back button. My code to create the button: UIBarButtonItem *backButton = [self customBarButton:@"back_button" imageHiglighted:@"settings_button_highlighted" x:20 y:0 widthDivider:2.6 heightDivider:2.6]; backButton.target = self; backButton.action = @selector(buttonPressed:); self.navigationItem.leftBarButtonItem = backButton; Her
