How can I make a UIBarButtonItem like this:
I can\'t find it in the SystemItem
That's probably using something like:
[[UIBarButtonItem alloc] initWithImage:@"info.png" style:UIBarButtonItemStyleBordered target:nil action:nil]
I tried with:
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithCustomView:[UIButton buttonWithType:UIButtonTypeInfoLight]];
item.style = UIBarButtonItemStyleBordered;
but it seems like with a custom view the bordered style doesn't get applied.