Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Export UIWebView Full Content to NSData? iPhone

What I am trying to do is get the UIWebViews full content (Text, images, and CSS) in one litte package.
I figured NSData would be the best way to do this. Or is there another more compressed version?

like image 954
Allison Avatar asked Dec 17 '25 14:12

Allison


1 Answers

Probably late enough to respond to this, but I figured out you can get all the data from the request you made with NSCachedURLResponse as such:

NSCachedURLResponse* response = [[NSURLCache sharedURLCache] 
                                     cachedResponseForRequest:[webView request]];
NSData* data = [response data];
like image 74
gabr10 Avatar answered Dec 20 '25 04:12

gabr10



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!