Search code examples
objective-cios7uinavigationcontrolleruinavigationitem

How to change leftBarbuttonItem title?


I want to change leftBarButton title. I've tried this

UIBarButtonItem *newBackButton =
[[UIBarButtonItem alloc] initWithTitle:@"Back"
                                 style:UIBarButtonItemStyleBordered
                                target:nil
                                action:nil];
[[self navigationItem] setLeftBarButtonItem:newBackButton];

but it brings changes like

enter image description here

But I want it like

enter image description here

How it can be possible?


Solution

  • It may helpful for you

          UIBarButtonItem *backBarButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStyleDone target:self action:@selector(backAction:)];
          self.navigationItem.leftBarButtonItem = backBarButton;