Objective C:访问 IBOutlet 的属性

发布于 2024-12-07 06:57:36 字数 286 浏览 0 评论 0原文

如果我在名为 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 技术交流群。

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

发布评论

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

评论(1

哎呦我呸! 2024-12-14 06:57:36

将这些 ImageView 声明为 @property 并在其他类中访问它们。

@property (nonatomic, retain) IBOutlet UIImageView *image1;

在实现类中

@synthesize image1;

现在您可以使用其他类中的 setter 和 getter 来访问这些对象来进行操作。

Declare these ImageView as @property and access them in other classes.

@property (nonatomic, retain) IBOutlet UIImageView *image1;

In the implementation class

@synthesize image1;

Now you can use setter and getter from other classes to access these objects to play around.

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