you can see the distance to the left of the button? How to remove this distance?
Add a spacer to the left of the button, something like:
UIBarButtonItem *backButtonItem = ....;
UIBarButtonItem *spacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
spacer.width = -5;
self.navigationItem.leftBarButtonItems = @[ spacer, backButtonItem ];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With