1
次の方法で.htmlファイルをwebviewにロードして読み込みを完了すると、イベント-(void)webViewDidFinishLoad:(UIWebView *)webView {
が発生します。リモートHTMLファイルのロード完了時のiOS webviewイベント
[webView1 loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"/files/myFile" ofType:@"html"]isDirectory:NO]]];
ただし、同じファイルをリモートから読み込むと、そのイベントは発生しません。どうして?どうすればいい?ありがとうございました。
[webView1 loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[urlBase stringByAppendingString:@".html"]]]];
!あなたのご協力に感謝します! – Jaume