通过其他类添加对象的最佳方法?

发布于 2024-12-08 13:00:35 字数 180 浏览 0 评论 0原文

在我的 iPhone 应用程序中,我有一个自定义的 UIViewController 类设置,它添加了一些 UIImageView 和其他东西。

如何通过我的主 UIViewController 访问此类,例如,从该外部类调用方法并将这些 UIImageView 添加到视图中?

In my iPhone app, I have a custom UIViewController class setup which adds some UIImageViews and things.

How can I access this class via my main UIViewController and, for example, call a method from that outside class and have it add those UIImageViews to the view?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鹿港小镇 2024-12-15 13:00:35

创建属性和公共方法,然后您可以在目标视图控制器中调用它们。

ps 但我从未使用过这种方法,因为它破坏了控制器的逻辑。相反,我通常使用一些具有所有必需方法的管理器。 (数据库管理器、网络管理器等)

Make property and public methods, after that you can call them in target viewcontroller.

p.s. But I never used this approach because it breaks controller's logic. Instead of I usually use some managers which has all required methods. (DBManager, NetworkManager, etc)

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