UIImage 是否具有相当于 myLabel.hidden = YES 的功能?

发布于 2024-10-06 06:01:59 字数 143 浏览 2 评论 0原文

我想用方法中的代码隐藏 UIImage ...然后在其位置显示其他内容,然后再次重新启用它。我该怎么做呢?

我知道如何使用 UILabels (myLabel.hidden = YES) 执行此操作,但不知道如何使用 UIImage

谢谢!

I'd like to hide an UIImage with a code in a method ... then display something else in its place and then re-enable it again. How would I go about doing this ?

I know how to do this with UILabels (myLabel.hidden = YES) but not with UIImage

thank you!

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

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

发布评论

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

评论(2

手长情犹 2024-10-13 06:01:59

确保您的 UIImage 包含在 UIImageView 内:

UIImage *theImage = [UIImage imageNamed:@"someImageName.png"];
UIImageView *imgView = [[UIImageView alloc] initWithImage:theImage];

self.imageView = imgView; // assuming you have a property called imageView

[imgView release];

[self.view addSubview:self.imageView]; //in your view controller

完成此操作后,您可以使用:

[self.imageView setHidden:YES];

Make sure that your UIImage is enclosed inside of a UIImageView:

UIImage *theImage = [UIImage imageNamed:@"someImageName.png"];
UIImageView *imgView = [[UIImageView alloc] initWithImage:theImage];

self.imageView = imgView; // assuming you have a property called imageView

[imgView release];

[self.view addSubview:self.imageView]; //in your view controller

once you've done this, you can use:

[self.imageView setHidden:YES];
忱杏 2024-10-13 06:01:59

您可以以与 UIImageView 相同的方式执行此操作。

UIImages 本身不会添加/显示在视图中。

You can do that in the same way to an UIImageView.

UIImages by themselves do not get added/displayed in a view.

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