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];
Web ページは正常に表示されますが、いくつかの画像が読み込まれません。