如何使用 ASIHTTPRequest 从 UIWebView 下载文件?
我想创建我的应用程序的一部分,您可以在其中下载 UIWebView 中显示的当前网页,然后将其保存到 UITableView 中,当您点击 UITableView 中的文件名时,它将加载 UIWebView 中的本地文件以允许离线浏览。
如何使用 http://allseeing-i.com/ASIHTTPRequest 执行此操作?我看了一下,所有的代码对于初学者来说看起来都非常令人畏惧!有替代方法吗?这是最好的方法吗?
谢谢
I want to create a section of my app where you can download the current webpage showing in the UIWebView and then save it to a UITableView and when you tap on the filename in the UITableView, it will load the local file in the UIWebView to allow offline browsing.
How can I do this with http://allseeing-i.com/ASIHTTPRequest? I've taken a look and all the code looks very daunting for a beginner! Is there an alternative method? Is this the best method?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASIWebPageRequest 就是答案。它是 ASIHTTPRequest 中包含的一个类,可以轻松下载整个页面及其所有相关的依赖项。
您可能想要创建一个自定义缓存来存储下载的网页,然后在用户请求时从该缓存中加载它们。
ASIWebPageRequest is the answer. It's a class included with ASIHTTPRequest that makes it easy to download whole pages, with all their associated dependencies.
You'd probably want to create a custom cache to store your downloaded webpages in, and then load them out of that cache when requested by the user.