计算网页加载到 UIWebView 所需的时间

发布于 2024-11-09 10:15:17 字数 99 浏览 0 评论 0原文

我们如何计算网页加载到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫卆 2024-11-16 10:15:17

根据定义,如果没有内容长度,您不知道 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文