更改 UIBarButtonItem 的宽度 [重复]
Posted
技术标签:
【中文标题】更改 UIBarButtonItem 的宽度 [重复]【英文标题】:Change the width of an UIBarButtonItem [duplicate] 【发布时间】:2012-01-28 10:24:23 【问题描述】:如何将UIBarButtonItem
的宽度更改为 29 像素?属性宽度不起作用,我不想创建UIButton
并使用initWithCustomView
,因为我希望方形背景调整为导航栏颜色。
我正在使用initWithImage
来初始化UIBarButtonItem
。
这是我的按钮,当前宽度为 37 像素。我想设置为 29px。
【问题讨论】:
@MaxMacLeod 提问者特别不想使用 initWithCustomView... 【参考方案1】:您可以通过将图像从界面构建器拖放到条形按钮项并使用以下代码更改自定义视图的宽度来实现:
CGRect frame = self.navigationItem.leftBarButtonItem.customView.frame;
frame.size.width = 141;
self.navigationItem.leftBarButtonItem.customView.frame = frame;
【讨论】:
【参考方案2】:你不能。如果你想要自定义宽度,你需要使用initWithCustomView
【讨论】:
但是为什么它们在 UIBarButtonItem 类中有属性宽度呢? 只有UIToolbar中的按钮才能使用以上是关于更改 UIBarButtonItem 的宽度 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
在swift中更改UINavigationBar中UIBarButtonItem的宽度