按钮文本颜色的更改未反映出来
我面临一个奇怪的问题。当按钮突出显示时,我正在更改按钮的文本颜色,但视觉上没有任何变化。
[myButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[myButton setTitleColor:[UIColor colorWithRed:150.0 green:150.0 blue:150.0 alpha:1.0] forState:UIControlStateHighlighted];
我错过了什么吗?
I am facing a weird issue. I am changing the text color of my button when it is highlighted but visually no change at all.
[myButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[myButton setTitleColor:[UIColor colorWithRed:150.0 green:150.0 blue:150.0 alpha:1.0] forState:UIControlStateHighlighted];
Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
颜色分量在 0.0 和 1.0 之间浮动!
try:
Color components are floats between 0.0 and 1.0 !