I want to create a system UIBarButton, but I want it to have plain style.
I've tried with this code, but the style is ignored. What's wrong with it?

UIBarButtonItem *search = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(showSearch)];    
search.style = UIBarButtonItemStylePlain;
self.navigationItem.rightBarButtonItem = search;
[search release];
link|improve this question

71% accept rate
search.style = UIBarButtonItemStylePlain; is unnecessary as UIBarButtonItemStylePlain is the default value for the style property of this Class. From UIBarButtonItem_Class. – chown Sep 8 '11 at 16:30
I add it to try to remove the borders. Documentation says plain style is the default, but that's not true in my case. The system button is bordered. – notme Sep 8 '11 at 23:51
feedback

2 Answers

up vote 0 down vote accepted

Found a similar thread here.

It seems that the way to go about making this plan is to create your custom UIButton and assign it to the bar button.

link|improve this answer
Using UIButton I lose the advantage of system button that is avoid to create my own image. – notme Sep 8 '11 at 23:49
I understand. I can't verify this without trying this out on code, but I'm wondering whether that could be the issue here -> Perhaps the system buttons come with their own border style by default. Will look into it if I get some time. – Madhu Sep 9 '11 at 0:07
I ended up creating an image. Not what I was looking for, but it seems the only solution. – notme Sep 19 '11 at 21:00
I've been looking for a solution to this myself... Don't want to re-create the standard button images. Nothing yet... – Stian Høiland Mar 12 at 19:54
feedback

The main thing here is that you need to place your button in the previous controller, not in the one that is going to be pushed.

//Your actual ViewController
UIBarButtonItem *search = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(showSearch)];    
search.style = UIBarButtonItemStylePlain;
self.navigationItem.rightBarButtonItem = search;
[search release];

//Controller that is going to be pushed and will display the new UIBarButtonItem
[self.navigationController pushViewController:newViewController animated:YES];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.