我尝试使用 IB 设置 UIBarButtonItem 的大小,但徒劳无功
我想减小宽度并增加高度。我该怎么做?请问有什么指点吗?设置宽度属性(如上图所示)似乎并没有改变任何东西。我也尝试像这样以编程方式设置它:
UIBarButtonItem *historyButton = [[UIBarButtonItem alloc]
initWithTitle:@"History" style:UIBarButtonItemStyleBordered target:self action:@selector(history:)];
historyButton.width = 3.0;
这也没有改变任何东西。
这是正在尝试修复的条形按钮(红色按钮):