My navigation bar title is not centered because my BackBarButtonItem is too large.
I have tried to include this solution :
UIBarButtonItem *newBackButton =
[[UIBarButtonItem alloc] initWithTitle:@"NewTitle"
style:UIBarButtonItemStyleBordered
target:nil
action:nil];
[[self navigationItem] setBackBarButtonItem:newBackButton];
or this one:
self.navigationController.navigationItem.backBarButtonItem.width=40;
in both ViewDidLoad and ViewWillAppear but it doesn't work.
Any ideas ?