将视图推出 NSObject 类

发布于 2024-11-30 05:39:18 字数 187 浏览 0 评论 0原文

如何将 NSObject 子类中的视图推送到屏幕/窗口? 目前,我正在编写一个类来将应用程序中的数据与服务器上的数据同步,并且我想使用 MBProgressHUD 类。 问题是,同步类是 NSObject 的子类,我不知道如何将此类中的内容推送到屏幕上。

或者我应该将 NSObject 类完全编辑为另一种父类?

谢谢, 水果茶

How can i push a view from a class which is a child of NSObject to the screen/window?
At this moment I'm writing a class to sync the data in my app with the data on my server and i want to use the MBProgressHUD class.
The Problem is, that the sync class is a child of NSObject and I don't know, how to push something out of this class to the screen.

Or should i have edit the NSObject class completely to another kind of parent class?

Thanks,
teawithfruit

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

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

发布评论

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

评论(2

倾听心声的旋律 2024-12-07 05:39:19

我将向 HUD 介绍您当前的观点。如果所有工作都在您的子类中,请使用 -showWhileExecuting 方法并仅调用您的子类,完成所有工作,然后当它返回时,它将自动关闭 HUD。

I would present the HUD on your current view. If all the work is in your child class, use the -showWhileExecuting method and just call your child class, do all the work, then when it returns back, it will automatically dismiss the HUD.

挽袖吟 2024-12-07 05:39:19

创建一个 UIView 属性,使用该视图进行图形处理,然后从 viewController 将视图属性添加为子视图。

Make a UIView property, do your graphics with that view, then, from the viewController, add the view property as a subview.

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