¡@

Home 

2014/10/15 ¤U¤È 10:04:01

iphone Programming Glossary: asiwebpagerequest

Unable to download whole html page - Objective C/Xcode

http://stackoverflow.com/questions/11097220/unable-to-download-whole-html-page-objective-c-xcode

or some other 3rd party parsers or libraries that can download the whole web page... You may take a look at ASIWebPageRequest which claims to be able to download a whole website but I haven't tried this functionality... share improve this answer..

How to implement NTLM Authentication for UIWebView?

http://stackoverflow.com/questions/3818120/how-to-implement-ntlm-authentication-for-uiwebview

but utterly fails when doing POSTs for the mere fact that it is doing a GET after it is posted. The ASIHttpRequest and ASIWebPageRequest have the same problem. GET requests work wonders but any POSTs just don't work. If only the world worked on just GET requests...

how to cache a whole web page with images in iOS

http://stackoverflow.com/questions/6696151/how-to-cache-a-whole-web-page-with-images-in-ios

you iphone ios ipad caching uiwebview share improve this question The ASIHTTPRequest project has a class called ASIWebPageRequest which is designed to do exactly what you want. If you're okay with adding an additional dependency to your project then.. want. If you're okay with adding an additional dependency to your project then I think it's a good solution for you ASIWebPageRequest . On the page I liked above there are some good examples of how to use it but I'll include one of them here for completeness.. First we'll cancel any in progress page load self request setDelegate nil self request cancel self setRequest ASIWebPageRequest requestWithURL url self request setDelegate self self request setDidFailSelector @selector webPageFetchFailed self request..

How do I download an entire webpage (with images) on the iPhone?

http://stackoverflow.com/questions/7547276/how-do-i-download-an-entire-webpage-with-images-on-the-iphone

just this for you download all HTML images and other resources associated with the page you're requesting. It's called ASIWebPageRequest and you can read the documentation and download it from here http allseeing i.com ASIHTTPRequest ASIWebPageRequest share..