I am creating a UIBarButtonItem and adding it to my navigation bar like so:
(void)viewDidLoad {
...
// Add the refresh button to the navigation bar
UIButton *refreshButton = [UIButton buttonWithType:UIButtonTypeCustom];
[refreshButton setFrame:CGRectMake(0,0,30,30)];
[refreshButton setImage:[UIImage imageNamed:@"G_refresh_icon.png"] forState:UIControlStateNormal];
[refreshButton addTarget:self action:@selector(refreshData) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *refreshBarButton = [[[UIBarButtonItem alloc] initWithCustomView:refreshButton] autorelease];
self.navigationItem.leftBarButtonItem = refreshBarButton;
}
It looks correct when I run, but I can select the bar button item by tapping the navigation bar anywhere from x = 0 to roughly 100. How can I adjust the selectable area to have a width of 30 px?
One approach you might consider is creating a
UIBarButtonItem
by callinginitWithCustomView:
. This is not ideal in that you don't get "selected" states out of the box AND you have to composite your bordered background (if want that look) with your button image, but with that you can more directly specify a frame for your toolbar item. If you're using text for your title instead of images you may still need add in a background image as a subview. Anyway, I'm having the same problem right now and this code works for me:Right now this is the only way I know of restricting the auto-sizing of the
UIBarButtonItem
s added to theUINavigationController
'snavigationItem
.Or try Maggie's solution, which is more thorough than mine.
The key thing with this is to realise that you are changing the custom view's width, rather than the
UIBarButton
itself.The code is therefore:
You will also need to trigger the layout change:
All this goes without saying that the layout is being done with Auto Sizing and frames. Incursions into navigation bars with Auto Layout yielded no success. See my question Auto Layout with UINavigationBar and UIBarButtonItem.
Sorry just realised that my code is almost identical to @oscartzombie. Not intentional! I'll leave this answer as I think it's worth adding the layout and other points, in addition to explaining without reference to Interface Bulder or images specifically.
Since iOS 11, just setting frame for
customView
and notUIBarButtonItem
won't work (like suggested in accepted answer). It seems like adding Autolayout toUIBarButtonItem
overrides the set frame. This post gave me the idea:Also note, that it is preferred that you use
UIButton
as yourCustomView
as you have to rely on it to trigger the action.You can do it by dropping an image to the bar button item from the interface builder and changing the width of the custom view with this code:
The following approach worked, see code to change width and height of the button and to add action item as well.
Note: The target and action of the UIBarButtonItem does not apply to image view
None of those solutions worked for me and I figure out auto-resizing thing overrides dimensions that you wrote in code.
after creating button by UIButton way, write following code block: