在代码中调整 UIBarButtonItem 的大小
如何在代码中调整 UIBarButtonItem 的大小?
How do I resize a UIBarButtonItem in the code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在代码中调整 UIBarButtonItem 的大小?
How do I resize a UIBarButtonItem in the code?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用 UIBarButtonItem 的 width 属性通过将其设置为 0 来调整按钮的大小以适应。
来自 Apple 的文档:
“如果值为 0.0 或负数,则该项目设置组合图像和标题的宽度以适合”
https://developer.apple.com/library/ios/documentation/uikit/reference/UIBarButtonItem_Class/Reference/Reference.html#//apple_ref/occ/instp/UIBarButtonItem/width
Use the UIBarButtonItem's width property to resize the button to fit by setting it to 0.
From Apple's docs:
"If the value is 0.0 or negative, the item sets the width of the combined image and title to fit"
https://developer.apple.com/library/ios/documentation/uikit/reference/UIBarButtonItem_Class/Reference/Reference.html#//apple_ref/occ/instp/UIBarButtonItem/width
如果你想在 UIBarButtonItem 中使用一些自定义图像,你可以使用这段代码。
If you want to use some custom image in UIBarButtonItem, you can use this code.
您无法像调整 UIView 那样调整 UIBarButtonItem 的大小。您可以做的是更改其宽度属性。
这应该适用于固定空格键按钮项目。
You can't resize a UIBarButtonItem as you would a UIView. What you can do is change its width property.
This should work for a Fixed Space Bar Button Item.