计算网页加载到 UIWebView 所需的时间
我们如何计算网页加载到 UIWebView 中所需的时间?如果您建议查看 HTTP 内容长度标头,那么当 HTTP 标头没有内容长度时如何做到这一点。我想制作一个进度条来跟踪加载时间。
How can we calculate the time that a web page will take to load into a UIWebView
? If you suggest looking at the HTTP content-length header, then how can this be done when the HTTP header doesn't have content-length. I want to make a progress bar tracking the loading time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据定义,如果没有内容长度,您不知道 HTTP 流何时结束。您可以使用 UIWebView 通知检测文档何时完成加载。但是,如果没有内容长度,就不可能有进度条。
By definition, you don't know when the HTTP stream will end if you don't have a content length. You can detect when a document finishes loading using the UIWebView notifications. However, without content length, you can't have a progress bar.