次のようなアンカータグを使用して外部リンクにリンクしようとしています:Google。
これを行うために、このコードをappDelegate.mに追加しました(コードはここからです:https ://gist.github.com/2012253 ):
- (BOOL)webView:(UIWebView *)theWebView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
NSURL *url = [request URL];
// Intercept the external http requests and forward to Safari.app
// Otherwise forward to the PhoneGap WebView
if ([[url scheme] isEqualToString:@"http"] || [[url scheme] isEqualToString:@"https"]) {
[[UIApplication sharedApplication] openURL:url];
return NO;
}
else {
return [ super webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType ];
}
}
しかし、私はまだグーグルにリンクすることができません...私は何か間違ったことをしていますか?助けが要る。