user1771125
user1771125

Reputation: 95

UIBarButtonItem offset

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

enter image description here

Upvotes: 4

Views: 1114

Answers (1)

Oliver Atkinson
Oliver Atkinson

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

Related Questions