Reputation: 3234
I have play UIBarButtonItem on UIToolbar. I want to make the style bordered. As it is system item, is there a way to make it bordered style?
UIBarButtonItem *systemItem1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemPlay target:self action:@selector(play:)];
Upvotes: 0
Views: 522
Reputation: 2910
Set the UIBarButtonItem
's style
property:
systemItem1.style = UIBarButtonItemStyleBordered;
See the UIBarButtonItem
class reference.
Upvotes: 5