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:)];
Set the
UIBarButtonItem‘sstyleproperty:See the
UIBarButtonItemclass reference.