iOS:从代码访问放置在 Interface Builder 中的 UIImageView
我已经使用 Interface Builder 在界面中放置了一些图像,并将它们设置为在启动时隐藏...现在我想在按下按钮时将隐藏属性更改为 FALSE,但我还没有尝试访问界面构建的图像在我之前的代码中(甚至不确定是否可能)...
有什么帮助吗?
I've placed some images in my interface with Interface Builder and set them to be hidden on startup... Now I want to change the hidden attribute to FALSE, when I press a button, but I haven't tried accessing interface built images in my code before (not even sure if it is possible)...
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在代码中创建一些 IBOutlet,在 Interface Builder 中连接它们,然后在代码中使用它们即可。
例如
顺便说一句:FALSE 是假的。 NO 是 Objective-C(虽然 FALSE 有效..)
Just create some IBOutlets in your code, connect them in Interface Builder and then use them in your code.
e.g.
btw: FALSE is false. NO is Objective-C (although FALSE works..)