Search code examples
iphonespaceuinavigationitemrightbarbuttonitem

rightBarButtonItem info button, no space to the right


I have a UIViewController set up to display an info-button on the right in its UINavigationItem like this:

UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[infoButton addTarget:self action:@selector(toggleAboutView) forControlEvents:UIControlEventTouchUpInside]; 
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithCustomView:infoButton] autorelease];

That works perfectly, but the only problem is that I'm left with little to no space to the right of the button, which looks pretty ugly:

Infobutton

Is there any way for the button to move about 5 px out from the right side?

Thanks.


Solution

  • infoButton.contentEdgeInsets = UIEdgeInsetsMake(0, -10, 0, 10);