iPadアプリケーションでhtmlファイルを読み込みたいのですが、htmlファイルに画像があり、その画像にタッチイベントがあります。webview で html ファイルを読み込むと、画像が表示されません。何故ですか?
私はコードを使用しています:
UIWebView *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
webView.backgroundColor = [UIColor lightGrayColor];
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"2line1" ofType:@"html"];
NSData *htmlData = [NSData dataWithContentsOfFile:htmlFile];
[webView loadData:htmlData MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:[NSURLURLWithString:@""]];