通过其他类添加对象的最佳方法?
在我的 iPhone 应用程序中,我有一个自定义的 UIViewController 类设置,它添加了一些 UIImageView 和其他东西。
如何通过我的主 UIViewController
访问此类,例如,从该外部类调用方法并将这些 UIImageView
添加到视图中?
In my iPhone app, I have a custom UIViewController
class setup which adds some UIImageView
s 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 UIImageView
s to the view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建属性和公共方法,然后您可以在目标视图控制器中调用它们。
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)