3

我有一个使用 PhoneGap 和 JQuery mobile 制作的 iOS 应用程序。该应用程序有一些我想在移动 Safari 中打开的外部链接,但到目前为止,它们只是在应用程序视图中打开。链接是这样写的:

<a rel="external" href="wwww.example.com">Click Here</a>

我阅读了 JQuery mobiles docs,它说添加rel="external"可以解决这个问题,但显然不是。有任何想法吗?请记住,这是一个基于 HTML 的应用程序。

4

2 回答 2

9

最终能够通过导航到 MainviewController.m 并查找它在其他帖子中提到的提到 webView 的部分然后从这里更改它来做到这一点

/* Comment out the block below to over-ride */

/*

- (void) webViewDidStartLoad:(UIWebView*)theWebView
{
    return [super webViewDidStartLoad:theWebView];
}

- (void) webView:(UIWebView*)theWebView didFailLoadWithError:(NSError*)error
{
    return [super webView:theWebView didFailLoadWithError:error];
}

- (BOOL) webView:(UIWebView*)theWebView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
{
    return [super webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType];
}
*/

对此

/**

 * Start Loading Request

 * This is where most of the magic happens... We take the request(s) and process the response.

 * From here we can re direct links and other protocalls to different internal methods.

 */

- (BOOL)webView:(UIWebView *)theWebView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType

{

    NSURL *url = [request URL];

    // add any other schemes you want to support, or perform additional

    // tests on the url before deciding what to do -jm

    if( [[url scheme] isEqualToString:@"http"] ||

       [[url scheme] isEqualToString:@"https"])

    {

        [[UIApplication sharedApplication] openURL:url];

        return NO;

    }

    else

    {

        return [ super webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType ];

    }



}

我没有使用objective-c的经验,所以我不得不对此进行试验,所以我很高兴我让它发挥作用。

于 2013-02-28T19:52:01.160 回答
1

很好帮助了我一点,但它会自动打开链接通过放置:

if (navigationType == UIWebViewNavigationTypeLinkClicked) { 
}

它起作用了,现在当用户单击其中包含 http:// 或 https:// 的 url 时,它会在 safari 中打开

所以我完全得到了这个代码:

if (navigationType == UIWebViewNavigationTypeLinkClicked) {
if( [[url scheme] isEqualToString:@"http"] ||

   [[url scheme] isEqualToString:@"https"])

{

    [[UIApplication sharedApplication] openURL:url];

    return NO;

}

else

{

    return [ super webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType ];

}
}
于 2013-06-01T11:07:32.790 回答