将视图推出 NSObject 类
如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将向 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.
创建一个 UIView 属性,使用该视图进行图形处理,然后从 viewController 将视图属性添加为子视图。
Make a UIView property, do your graphics with that view, then, from the viewController, add the view property as a subview.