UIBarButtonItem offset

can you see the distance to the left of the button? How to remove this distance?

enter image description here

+4
source share
1 answer

Add a separator to the left of the button, for example:

UIBarButtonItem *backButtonItem = ....; UIBarButtonItem *spacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil]; spacer.width = -5; self.navigationItem.leftBarButtonItems = @[ spacer, backButtonItem ]; 
+8
source

Source: https://habr.com/ru/post/1446626/


All Articles