在 while 循环中隐藏/显示 UI 元素

发布于 2025-01-07 22:53:59 字数 268 浏览 1 评论 0原文

这可能很简单,但我想在循环中隐藏不同命名的 UI 元素:

int i = intFigures + 1;

while (i <= 16) {
   imagei.hidden = TRUE;
   i++
}

本质上,我需要根据记录显示 1 到 16 之间的多个图像。如果该特定记录只有 12 个图像,我想隐藏 UIImage 13 到 16。如何根据增量设置我试图隐藏的 UIImage环形?

This is probably an easy one but I want to hide variably named UI elements in a loop:

int i = intFigures + 1;

while (i <= 16) {
   imagei.hidden = TRUE;
   i++
}

Essentially I need to display a number of images between 1 and 16 depending on the record. If that particular record only has 12 images, I want to hide UIImage 13 through 16. How do I set the UIImage that I am trying to hide based on the increment of the loop?

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

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

发布评论

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

评论(1

じее 2025-01-14 22:53:59

您不能仅将变量 i 附加到图像变量的名称中。您可能已经在数组中拥有了 ImageView,为什么不直接迭代它呢。

for(UIImageView *image in myArrayOfImageViews) {
    image.hidden = YES;
}

或者,如果您的 imageView 直接添加到当前视图,您可以只迭代其子视图。添加图像时,您可以为某些 imageView 指定特定标签,以便稍后识别它们。例如:

for(UIView *view in [self.view subviews]) {
    if (view.tag == SOME_MAGIC_NUMBER) view.hidden = YES;
}

You cannot just append the variable i to the name of the image variable. You probably already have your ImageViews in an array, why not just iterate over that.

for(UIImageView *image in myArrayOfImageViews) {
    image.hidden = YES;
}

Alternatively, if your imageViews are added directly to your current view, you could just iterate over its subviews. When you add the images, you could give certain imageViews a specific tag so that you can later identify them. Such as:

for(UIView *view in [self.view subviews]) {
    if (view.tag == SOME_MAGIC_NUMBER) view.hidden = YES;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文