It is probably late enough to answer this, but I realized that you can get all the data from the request that you made using NSCachedURLResponse as such:
NSCachedURLResponse* response = [[NSURLCache sharedURLCache] cachedResponseForRequest:[webView request]]; NSData* data = [response data];
gabr10
source share