我想在我的工具栏上有一个方形按钮。我UIBarButtonItem
使用的图像足够宽,可以将我的按钮推成矩形。我浏览了文档,但找不到最好的尺寸。
查看其他答案,29.0
似乎是一个常见的尺寸,但我想得到确认。这是我设置按钮的方式:
UIBarButtonItem *locationButtonItem = [[UIBarButtonItem alloc]
initWithImage:[UIImage imageNamed:@"location.png"]
style:UIBarButtonItemStyleBordered
target:self
action:@selector(locationButtonTapped:)];
[locationButtonItem setWidth:29.0f];
我应该将我的工具栏按钮设置为多少宽度才能使其成为方形?