I have a webview which i am using to display web pages from server . The initial page which i load is a simple html loaded from the server which in turn calls three more html pages displaying images .This works fine in safari of iPad but not on webview where i cannot see images at all.
Code used is
[[self request] setDelegate:nil];
[[self request] cancel];
[self setRequest:[ASIWebPageRequest requestWithURL:navigationURL]];
[[self request] setDelegate:self];
[[self request] setDidFailSelector:@selector(webPageFetchFailed:)];
[[self request] setDidFinishSelector:@selector(webPageFetchSucceeded:)];
[[self request] setShouldPresentProxyAuthenticationDialog:YES];
[[self request] setShouldPresentCredentialsBeforeChallenge:YES];
[[self request] setShouldPresentAuthenticationDialog:YES];
// Tell the request to embed external resources directly in the page
[[self request] setUrlReplacementMode:ASIReplaceExternalResourcesWithData];
// It is strongly recommended you use a download cache with ASIWebPageRequest
// When using a cache, external resources are automatically stored in the cache
// and can be pulled from the cache on subsequent page loads
[[self request] setDownloadCache:[ASIDownloadCache sharedCache]];
// Ask the download cache for a place to store the cached data
// This is the most efficient way for an ASIWebPageRequest to store a web page
[[self request] setDownloadDestinationPath:
[[ASIDownloadCache sharedCache] pathToStoreCachedResponseDataForRequest:[self request]]];
[[self request] startAsynchronous];
and after this
- (void)webPageFetchSucceeded:(ASIHTTPRequest *)theRequest
{ NSString *response = [NSString stringWithContentsOfFile:
[theRequest downloadDestinationPath] encoding:[theRequest responseEncoding] error:nil];
// Note we're setting the baseURL to the url of the page we downloaded.
//This is important!
NSString *html = [NSString stringWithContentsOfFile:[theRequest downloadDestinationPath] encoding:NSUTF8StringEncoding error:nil];
// NSData *data=[NSData dataWithContentsOfURL:navigationURL];
//NSData *data= [NSData dataWithContentsOfFile:response];
// NSURL *nav = [NSURL URLWithString:@"http://www.google.co.in"];
// NSURLRequest *urlreq=[NSURLRequest requestWithURL:nav];
//
NSLog(@"html content is %@",html);
//[web loadHTMLString:html baseURL:self.navigationURL];
NSData* data = [html dataUsingEncoding:NSUTF8StringEncoding];
[web loadData:data MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:navigationURL];
}
tried using all possible methods for webview : "loaddhtmlstring" , "loaddata" but none of these displays images in the webview.Also checked html on console and it comes up perfectly . is there something missing in the code above .
loadHTMLString... , after that trying a synchronous request withloadRequest. If all this works you can go on with asynchronous requests (if needed). – Kai Apr 23 '12 at 9:08