IBAction按钮改变颜色?

发布于 2024-12-04 15:49:24 字数 65 浏览 0 评论 0原文

我在界面生成器中创建了一个按钮并将其类型设置为自定义。我想在视图加载时根据按钮的标签更改按钮的背景颜色。我该怎么做?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我太投入 2024-12-11 15:49:24

按钮已添加到 Xib,标签设置为 1。

查看标题:

@property (nonatomic, retain) IBOutlet UIButton *myButton;

在界面构建器中,将 myButton 绑定到按钮。

然后在 viewDidLoad 中以编程方式,根据标记值有条件地设置:

- (void)viewDidLoad
{
    [super viewDidLoad];

    if ([myButton tag] == 1)
    {
        [myButton setBackgroundColor:[UIColor blueColor]];
    }
    else
    {
        [myButton setBackgroundColor:[UIColor greenColor]];
    }
}

Button added to Xib, tag set to 1.

View header:

@property (nonatomic, retain) IBOutlet UIButton *myButton;

In interface builder, bound myButton to button.

Then programmatically in viewDidLoad, conditionally set based on tag value:

- (void)viewDidLoad
{
    [super viewDidLoad];

    if ([myButton tag] == 1)
    {
        [myButton setBackgroundColor:[UIColor blueColor]];
    }
    else
    {
        [myButton setBackgroundColor:[UIColor greenColor]];
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文