UIWebview:为什么我的图像没有加载?

时间:2012-05-02 13:19:21

标签: ios uiwebview

使用UIWebview进行基本身份验证(身份验证有效)但是我没有下载图像?谁能指出我正确的方向?

我正在与此联系:

connection = [[NSURLConnection alloc] initWithRequest:sourceUrl
                                             delegate:self 
                                     startImmediately:YES];

-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
 NSLog(@"%s", __FUNCTION__);
[webData appendData:data];
}



 -(void)connectionDidFinishLoading:(NSURLConnection *)connection{
    NSLog(@"%s", __FUNCTION__);
    [_webView loadData:webData 
              MIMEType: @"text/html" 
      textEncodingName: @"UTF-8" 
          baseURL:nil];

我的网页很好,但是没有加载几张图片。

1 个答案:

答案 0 :(得分:0)

如果您使用相对路径,则应设置基本URL。