Objective C:访问 IBOutlet 的属性
如果我在名为 MainViewController
的 .xib 文件中有一个 UIImageView
(当然,它与相应的 MainViewController
接口 (.h) 链接)和实现 (.m) 文件),如何从完全独立的类更改 UIImageView 的图像?
我想从一个单独的类处理所有图像初始化(有很多图像),但似乎无法弄清楚如何在 MainViewController.m
之外执行此操作。
有什么建议吗?谢谢。
If I have a UIImageView
in an .xib file called MainViewController
(which, of course, is linked with the respective MainViewController
interface (.h) and implementation (.m) files), how can I change the image of the UIImageView
from an entirely separate class?
I want to process all of the image initialisation from a separate class (there are a lot of images), but can't seem to figure out how to do it outside of MainViewController.m
.
Any tips? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将这些 ImageView 声明为 @property 并在其他类中访问它们。
在实现类中
现在您可以使用其他类中的 setter 和 getter 来访问这些对象来进行操作。
Declare these ImageView as @property and access them in other classes.
In the implementation class
Now you can use setter and getter from other classes to access these objects to play around.