如何在后台刷新列表视图?
我想在控制器处于后台时刷新它的列表视图。 因为我想更新该列表的数组。
关于如何做到这一点的任何想法。
提前非常感谢
I want to refresh a list view in a controller while it is in background.
As i want to update the array of that list.
any ideas on how to do this.
Thnx a lot in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你的意思是你的 ViewController 被推回到堆栈中,并且你想从顶部视图控制器更新数组并重新加载列表?如果这个假设是正确的,那么您可以
I think what you meant was that your ViewController was pushed back in the stack and from the top View controller you want to update the array and reload list? If this assumption is correct this is what you can do
了解 NSOperation 和 NSOperationQueue。 NSThread 也可能有用。
两者都会给你如何在后台做一些工作的想法。
Read about NSOperation and NSOperationQueue. NSThread also might be useful.
Both will give you ideas how to do some work in background.