如何知道 NSURLRequest 何时完成加载
我正在实现一个显示一些 Twitter 数据的应用程序,在 wifi 上工作时没问题,但在 3g 崩溃时,我得出的结论是,因为获取填充表的数据的 NSURLRequest 需要更长的加载时间,因此表结束当键还没有加载时调用一个对象来获取键,
所以问题是, - 我如何知道 NSURLRequest 何时完成加载? [我检查了类参考但没有看到它?]
非常感谢!
Im implementing an app that shows some Twitter data, when is working on wifi is ok, but on 3g crashes, I have come to the conclusion that is because the NSURLRequest that fetchs the data that populates the table takes longer to load so the table ends up calling an object for key, when the keys havent even loaded,
So the question is,
- how can I know when the NSURLRequest finished loading? [I checked the Class Reference but didnt see it??]
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
委托方法在请求的相应 NSURLConnection 上调用,例如,
您将收到各种回调,包括完成的回调,如下所示:
其他委托回调有:
The delegate methods are invoked on the request's corresponding NSURLConnection, e.g.
You will then receive various callbacks included the finished callback as follows:
Other delegate callbacks are: