I am loading web pages from server in webview using below code :-
-(void)loadView
{
[super loadView];
[[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];
}
where navigation url is picked up from a screen where user enters url .
After this
- (void)webPageFetchSucceeded:(ASIHTTPRequest *)theRequest
{ NSString *response = [NSString stringWithContentsOfFile:
[theRequest downloadDestinationPath] encoding:[theRequest responseEncoding] error:nil];
NSString *html = [NSString stringWithContentsOfFile:[theRequest downloadDestinationPath] encoding:NSUTF8StringEncoding error:nil];
NSData* data = [html dataUsingEncoding:NSUTF8StringEncoding];
[web loadData:data MIMEType:@"text/html" textEncodingName:@"utf-8" baseURL:navigationURL];
}
Tried different MIME types but no success . Link opens perfectly fine in safari of iPad and displays al d images but the same link when i enter in webview it does not display images .. How to overcome this..unable to find the solution :(
html" has a valid string with HTML data in it after your call to "stringWithContentsOfFile". – Michael Dautermann Apr 18 '12 at 4:51