ios-WKWebView 拨打电话

-(void)webView:(WKWebView* )webView didStartProvisionalNavigation:(WKNavigation* )navigation
{
    
    NSString *path= [webView.URL absoluteString];
    NSString * newPath = [path lowercaseString];
    
    if ([newPath hasPrefix:@"sms:"] || [newPath hasPrefix:@"tel:"]) {
        
        UIApplication * app = [UIApplication sharedApplication];
        if ([app canOpenURL:[NSURL URLWithString:newPath]]) {
            [app openURL:[NSURL URLWithString:newPath]];
        }
        return;
}}

 

posted @ 2016-12-12 16:01  代码始我快乐  阅读(2486)  评论(0编辑  收藏  举报