ios - Reduce width of BackBarButtonItem - Navigation Bar Title not centered -


my navigation bar title not centered because backbarbuttonitem large.

i have tried include solution :

uibarbuttonitem *newbackbutton =      [[uibarbuttonitem alloc] initwithtitle:@"newtitle"                                       style:uibarbuttonitemstylebordered                                      target:nil                                      action:nil]; [[self navigationitem] setbackbarbuttonitem:newbackbutton]; 

or one:

 self.navigationcontroller.navigationitem.backbarbuttonitem.width=40; 

in both viewdidload , viewwillappear doesn't work.

any ideas ?

backbarbuttonitem big because of text inside.

i have deleted text inside line of code :

    self.navigationcontroller.navigationbar.topitem.title = @""; 

or one:

self.navigationcontroller.navigationbar.backitem.title = @""; 

in viewdidload method.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -