UIImage 是否具有相当于 myLabel.hidden = YES 的功能?
我想用方法中的代码隐藏 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您的
UIImage
包含在UIImageView
内:完成此操作后,您可以使用:
Make sure that your
UIImage
is enclosed inside of aUIImageView
:once you've done this, you can use:
您可以以与 UIImageView 相同的方式执行此操作。
UIImages 本身不会添加/显示在视图中。
You can do that in the same way to an UIImageView.
UIImages by themselves do not get added/displayed in a view.