使用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];
我的网页很好,但是没有加载几张图片。
答案 0 :(得分:0)
如果您使用相对路径,则应设置基本URL。