UIWebView
をHTMLコンテンツで実装しました。UIWebViewをクリックしてもshouldStartLoadWithRequestが機能しません
UIWebView *webView=[[UIWebView alloc] initWithFrame:subView.frame];
webView.delegate=self;
webView.backgroundColor=[UIColor clearColor];
[webView addSubview:chartWebView];
[webView loadHTMLString:htmlContentString baseURL: [[NSBundle mainBundle] bundleURL]];
WebViewのデリゲートメソッドをロードしているときに、それが正常に働いているが、私はリンクをクリックしたとき、shouldStartLoadWithRequest
メソッドが呼び出されません。
私は以下のようなメソッドを書いた:
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
if ([[[request URL] absoluteString] hasPrefix:@"ios:"])
{
[self performSelector:@selector(getValuesFromWebToNative)];
return NO;
}
return YES;
}