选择 UITableView 后如何推送加载视图?
现在我在显示加载视图时遇到问题。这个过程是这样的:
- 在 UITableView 中选择行
- 从主视图弹出 UITableView
- 将 Loadingview 推送到主视图
- 调用使用 JSON 请求的长方法
问题是,当我选择表中的行时,它会在那里暂停,直到一切完成。我该如何解决这个问题?
Right now I am having trouble displaying the loading view. The process goes like this:
- Select row in UITableView
- Pop UITableView from mainview
- Push Loadingview into mainview
- Call long method that uses JSON Requests
The problem is that when I select the row in the table, it pauses there until everything is complete. How do I get around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在单独的线程上加载数据。就我个人而言,我要做的是将加载视图推入主视图,然后生成一个加载数据的新线程。数据加载完成后,您可以编组回 UI 线程,关闭加载视图,然后呈现您将在其中显示数据的任何视图。
您的实现将如下所示:
You'll want to load the data on a separate thread. Personally, what I'd do is push the loading view into the main view then spawn a new thread that loads the data. Once the data has loaded, you can marshall back to the UI thread, dismiss the loading view and then present whatever view it is that you'll be displaying your data in.
Your implementation will look something like this:
使用 GCD 并发送异步请求,当请求完成时转到主线程并执行您想要的操作。
Use GCD and send async request, when request finished go to main thread and do what you want.