Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 .

share|improve this question
try directly loading html, instead of converting and then loading - [web loadHTMLString:html baseURL:navigationURL]; – rishi Apr 23 '12 at 8:48
I didn't get if you don't see anything on the web view or if only the images are missing. From the code you posted, I can not tell, if the web view is initialized and added to a subview at all. Are you sure, you see the web view on screen. If yes I'd start with trying step by step: First not downloading at all, just displaying hard-coded html with loadHTMLString ... , after that trying a synchronous request with loadRequest . If all this works you can go on with asynchronous requests (if needed). – Kai Apr 23 '12 at 9:08
@RIP tried doing that as well ..didnt help :( – Amit Nalawade Apr 23 '12 at 9:36
@Kai webview is added thru xib and i do see other pages perfectly in the webview only problem is with the images. – Amit Nalawade Apr 23 '12 at 9:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.