IBAction按钮改变颜色?
我在界面生成器中创建了一个按钮并将其类型设置为自定义。我想在视图加载时根据按钮的标签更改按钮的背景颜色。我该怎么做?
I have created a button in interface builder and set its type as custom. I want to change the background color of the button based on the button's tag when the view loads. How can i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按钮已添加到 Xib,标签设置为 1。
查看标题:
在界面构建器中,将 myButton 绑定到按钮。
然后在 viewDidLoad 中以编程方式,根据标记值有条件地设置:
Button added to Xib, tag set to 1.
View header:
In interface builder, bound myButton to button.
Then programmatically in viewDidLoad, conditionally set based on tag value: