Reputation: 95
you can see the distance to the left of the button? How to remove this distance?
Upvotes: 4
Views: 1114
Reputation: 8029
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 ];
Upvotes: 8