如何使图像视图从屏幕上消失
我想让图像视图从屏幕上消失。 我不想释放它。 我怎样才能做到这一点?
I want to make image view disappear from screen.
I don't want to release it.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的。
[myImageView setHidden:是];
UIView 文档位于: http://developer .apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIView_Class/UIView/UIView.html
来自文档:
Simple.
[myImageView setHidden:YES];
UIView documentation is here: http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIView_Class/UIView/UIView.html
From the docs:
@Steve 有相同的答案,只是语法不同。我只使用过下面的语法。
@Steve has the same answer just different syntax. I have only ever used the syntax below.