How can I create an UIBarButtonItem without any border, but just a label inside?
EDIT
I tried something like this with no luck:
UIBarButtonItem* langButton = [[UIBarButtonItem alloc] initWithTitle:@"EN"
style:UIBarButtonItemStylePlain target:self action:@selector(changeLang)];
self.navigationItem.leftBarButtonItem = langButton;
[langButton release];