想要使用 for 循环来设置多个对象的属性

发布于 2024-11-08 21:13:40 字数 223 浏览 0 评论 0原文

这是一个菜鸟问题。我想使用 for 循环来设置几个按钮的可见性。这就是我想做的:

for (int y = 0; y < numberOfPeople; y++) {
    button[y].hidden = true;
} 

我有 5 个按钮,名为:button1、button2、button3、button4、button5,人数是我要发送的变量。

Here is a rookie question. I want to use a for loop to set the visibility on several buttons. Here is what i wanted to do:

for (int y = 0; y < numberOfPeople; y++) {
    button[y].hidden = true;
} 

where I have 5 buttons named: button1, button2, button3, button4, button5 and number of people is the variable I am sending.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

檐上三寸雪 2024-11-15 21:13:40

您可以使用数组来执行此操作:

NSButton *buttons[5];

您可以通过这种方式定义实例变量,也可以执行以下操作:

NSButton *buttons[5] = { button1, button2, button3, button4, button5 };
for (int i = 0; i < 5; ++i)
    button[i].hidden = YES;

You can do this using an array:

NSButton *buttons[5];

You can either define your instance variable this way, or you can do this:

NSButton *buttons[5] = { button1, button2, button3, button4, button5 };
for (int i = 0; i < 5; ++i)
    button[i].hidden = YES;
鼻尖触碰 2024-11-15 21:13:40
NSArray* buttons = [NSArray arrayWithObjects: button1, button2, button3, button4, button5, nil];
for (id aButton in buttons)
{
    aButton.hidden = YES;
}

优点是循环不需要知道它有多少个按钮。

NSArray* buttons = [NSArray arrayWithObjects: button1, button2, button3, button4, button5, nil];
for (id aButton in buttons)
{
    aButton.hidden = YES;
}

Has the advantage that the loop does not need to know how many buttons it has got.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文