UIWebView和JS交互详解

上个项目用到UIWebView和JS的交互,这里总结一下两者之间交互的方法。
以下代码都在这个demo里。
先来研究下JS调用OC的方法

拦截假的URL

比如html上有一个按钮,想要点击按钮调用OC的方法。
在JS中点击按钮后用JS发起一个假的URL请求,然后利用webView的代理方法shouldStartLoadWithRequest来拿到这个假的URL字符串,这个字符串包含了需要调用的方法名和传入的参数。下面是HTML的代码



    
        
            
    
    
        

OC代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    _webView = [[UIWebView alloc] initWithFrame:[UIScreen mainScreen].bounds];
    _webView.delegate = self;
    [self.view addSubview:_webView];
    NSURL *htmlURL = [[NSBundle mainBundle] URLForResource:@"File.html" withExtension:nil];
    NSURLRequest *request = [NSURLRequest requestWithURL:htmlURL];
    [_webView loadRequest:request];
    
    
    // Do any additional setup after loading the view.
}

#pragma mark -- UIWebViewDelegate

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
    NSString *scheme = request.URL.scheme;
    NSString *host = request.URL.host;
    NSString *query = request.URL.query;
    NSString * url = request.URL.absoluteString;
    if ([scheme isEqualToString:@"test1"]) {
        NSString *methodName = host;
        if (query) {
            methodName = [methodName stringByAppendingString:@":"];
        }
        SEL sel = NSSelectorFromString(methodName);
        NSString *parameter = [[query componentsSeparatedByString:@"="] lastObject];
        [self performSelector:sel withObject:parameter];
        return NO;
    }else if ([scheme isEqualToString:@"test2"]){//JS中的是Test2,在拦截到的url scheme全都被转化为小写。
        NSURL *url = request.URL;
        NSArray *params =[url.query componentsSeparatedByString:@"&"];
        NSMutableDictionary *tempDic = [NSMutableDictionary dictionary];
        for (NSString *paramStr in params) {
            NSArray *dicArray = [paramStr componentsSeparatedByString:@"="];
            if (dicArray.count > 1) {
                NSString *decodeValue = [dicArray[1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
                [tempDic setObject:decodeValue forKey:dicArray[0]];
            }
        }
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"方式一" message:@"这是OC原生的弹出窗" delegate:self cancelButtonTitle:@"收到" otherButtonTitles:nil];
        [alertView show];
        NSLog(@"tempDic:%@",tempDic);
        return NO;
    }
    return YES;
}


- (void)webViewDidStartLoad:(UIWebView *)webView{
    
}

- (void)webViewDidFinishLoad:(UIWebView *)webView{
    
}

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error{
    
}

- (void)showToast {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"成功" message:@"JS调用OC代码成功!" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
    [alert show];
}

- (void)showToastWithParameter:(NSString *)parama {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"成功" message:[NSString stringWithFormat:@"JS调用OC代码成功 - JS参数:%@",parama] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
    [alert show];
}

需要注意的是,在UIWebView的代理方法中拦截到的scheme会转换成小写

点击模拟器上的第一个和第二个按钮分别会调用本地的showToast和showToastWithParameter:方法。第三个按钮中没有使用
window.location.href,在别的文章中看到了下面的解释:

因为如果当前网页正使用window.location.href加载网页的同时,调用window.location.href去调用OC原生方法,会导致加载网页的操作被取消掉。
同样的,如果连续使用window.location.href执行两次OC原生调用,也有可能导致第一次的操作被取消掉。所以我们使用自定义的loadURL,来避免这个问题。loadURL的实现来自关于UIWebView和PhoneGap的总结一文。

使用JavaScriptCore

iOS7之后,app新添加了一个JavaScriptCore/JavaScriptCore.h这个库用来做JS交互。注意,使用这种方式调用到OC的方法是在子线程中的。使用JavaScriptCore/JavaScriptCore.h做js调用oc有两种方式,一种是用block注入,一种是使用JSExport协议来实现。
下面是h5的代码:



    
        
            
    
    
        

在HTML中,添加一个事件有两种方法,一种是,另一种是;对于第一种写法,对应的OC代码如下:

- (void)webViewDidFinishLoad:(UIWebView *)webView{
    JSContext *context = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    context[@"showToastWithparams"] = ^() {
        //NSLog(@"当前线程 - %@",[NSThread currentThread]);
        NSArray *params = [JSContext currentArguments];
        for (JSValue *Param in params) {
            NSLog(@"%@", Param); // 打印结果就是JS传递过来的参数
        }
        //注意,这时候是在子线程中的,要更新UI的话要回到主线程中
        dispatch_async(dispatch_get_main_queue(), ^{
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"成功" message:[NSString stringWithFormat:@"js调用oc原生代码成功!"] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
            [alert show];
        });
    };    
}

对于第二种写法,首先要定义一个继承自JSExport的协议,协议里面定义的方法即是供JS调用的OC原生方法

@protocol TestJSExport
JSExportAs
(showAlert,
 - (void)showAlertWithParameters:(NSString *)parameterone parametertwo:(NSString *)parametertwo
 );
@end
- (void)webViewDidFinishLoad:(UIWebView *)webView{
    JSContext *context = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    // 用TestJSExport协议来关联关联JCObjective的方法
    context[@"JSObjective"] = self;
}
#pragma mark -- TestJSExport协议

- (void)showAlertWithParameters:(NSString *)parameterone parametertwo:(NSString *)parametertwo {
    NSLog(@"当前线程 - %@",[NSThread currentThread]);// 子线程
    //NSLog(@"JS和OC交互 - %@ -- %@",parameterone,parametertwo);
   //注意,这个代理方法也是在子线程中的
    dispatch_async(dispatch_get_main_queue(), ^{
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"成功" message:[NSString stringWithFormat:@"js调用oc原生代码成功! - JS参数:%@,%@",parameterone,parametertwo] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
        [alert show];
    });
}

WebViewJavascriptBridge

WebViewJavascriptBridge
是一个第三方的库用于和js交互的。它在做UIWebView的js调用oc方法的时候使用的是拦截假的url的方式。

你可能感兴趣的:(UIWebView和JS交互详解)