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];
search.style = UIBarButtonItemStylePlain;is unnecessary asUIBarButtonItemStylePlainis the default value for the style property of this Class. From UIBarButtonItem_Class. – chown Sep 8 '11 at 16:30