UIBarButtonItem 与 UIBarButtonItemStyleDone 的tintColor 是哪个?
我想使用带有两个按钮的 UISegmentedControl 作为单个“完成”按钮的替代品。为了实现这一点,我需要通过 UIBarButtonItemStyleDone 了解 UIBarButtonItems 的tintColor。
提前欢呼并感谢
MrMage
I would like to use a UISegmentedControl with two buttons as a replacement for a single 'Done' button. To achieve this, I need to know the tintColor of UIBarButtonItems with UIBarButtonItemStyleDone.
Cheers and thanks in advance
MrMage
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Joe Hewitt 的 Three20 示例项目 TTCatalog 中,它是
RGBCOLOR(30, 110, 255)
。所以这也是我要使用的。更新:
RGBCOLOR(60, 136, 230)
更好。In Joe Hewitt's Three20 example project TTCatalog, it's
RGBCOLOR(30, 110, 255)
. So that's what I'm gonna use, too.Update:
RGBCOLOR(60, 136, 230)
is even better.