I'm looking to reduce the size of the UIBarButtonSystemItemStop
button style. I've tried setting the width; however, that has no effect.
UIBarButtonItem *stopBarItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemStop target:self action:@selector(stopSearch:)];
I've tried changing stopBarItem.width
but that doesn't seem to do anything.
I have done the obvious as in using a custom X icon, but there should be s simple way to reduce the size.