iphone - 如何在没有 UIToolBar 的情况下使用 UIBarButtonItem 样式
我可以在我的视图中显示黑色风格的 UIBarButtonItem 而没有下面的 UIToolBar 吗?
UIToolBar 总是有一种边框的东西,我希望系统 UIBarButtonItem 是黑色的,就像黑色标准取消按钮一样,但 UIToolBar 不是,
我该怎么办?
谢谢
Can I show a black style UIBarButtonItem in my view without the underneath UIToolBar?
The UIToolBar always has a kind of border thing, I want the system UIBarButtonItem in black just like a black standard cancel button, but not the UIToolBar
How can I do it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个厚颜无耻的黑客可以帮助你解决这个问题。
您想要使用样式设置为
UISegmentedControlStyleBar
的 UISegmentedControl 并且仅使用一项。您还需要将setMomentary
设置为 yes - 使其表现得像一个按钮:这将为您提供一个看起来像 UIBarButtonItem 的按钮,您可以将其添加到普通视图中,就像它是一个按钮一样。您也可以添加目标和操作。 :)
这就是你得到的:像这样的:
there is a cheeky hack that will help you with this.
you want to use a UISegmentedControl with style set to
UISegmentedControlStyleBar
and only one item. You also need tosetMomentary
to yes - to make it behave like a button:This will give you a button that looks like a UIBarButtonItem that you can add to your normal view as if it were a button. You can add a target and an action as well. :)
This is what you get: something like this:
我还没有完全做过类似的事情,但我建议您可以以某种方式将除 UIBarButtonItem 之外的所有 UIToolBar 的子视图 alpha 设置为零。只需让 UIBarButtonItem 可见即可。
UIToolBar继承自UIView,所以我的第一个尝试是将其backgroundColor设置为clearColor。
I haven't exactly done anything like that, but I suggest you could somehow set all the UIToolBar's subviews alpha to zero except for the UIBarButtonItem . Just leave the UIBarButtonItem visible.
UIToolBar inherits from UIView, so my first try would be to set its backgroundColor to clearColor.