iOS下JS與原生OC互相呼叫(總結)

哈雷哈雷_Wong發表於2018-02-27

iOS開發免不了要與UIWebView打交道,然後就要涉及到JS與原生OC互動,今天總結一下JS與原生OC互動的兩種方式。

JS呼叫原生OC篇

方式一

第一種方式是用JS發起一個假的URL請求,然後利用UIWebView的代理方法攔截這次請求,然後再做相應的處理。 我寫了一個簡單的HTML網頁和一個btn點選事件用來與原生OC互動,HTML程式碼如下:

<html>
    <header>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
            function showAlert(message){
                alert(message);
            }
        
            function loadURL(url) {
                var iFrame;
                iFrame = document.createElement("iframe");
                iFrame.setAttribute("src", url);
                iFrame.setAttribute("style", "display:none;");
                iFrame.setAttribute("height", "0px");
                iFrame.setAttribute("width", "0px");
                iFrame.setAttribute("frameborder", "0");
                document.body.appendChild(iFrame);
                // 發起請求後這個 iFrame 就沒用了,所以把它從 dom 上移除掉
                iFrame.parentNode.removeChild(iFrame);
                iFrame = null;
            }
            function firstClick() {
                loadURL("firstClick://shareClick?title=分享的標題&content=分享的內容&url=連結地址&imagePath=圖片地址");
            }
        </script>
    </header>
    
    <body>
        <h2> 這裡是第一種方式 </h2>
        <br/>
        <br/>
        <button type="button" onclick="firstClick()">Click Me!</button>
        
    </body>
</html>
複製程式碼

然後在專案的控制器中實現UIWebView的代理方法:

#pragma mark - UIWebViewDelegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
    NSURL * url = [request URL];
   if ([[url scheme] isEqualToString:@"firstclick"]) {
        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;
}
複製程式碼

注意:1. JS中的firstClick,在攔截到的url scheme全都被轉化為小寫。 2.html中需要設定編碼,否則中文引數可能會出現編碼問題。 3.JS用開啟一個iFrame的方式替代直接用document.location的方式,以避免多次請求,被替換覆蓋的問題。

早期的JS與原生互動的開源庫很多都是用得這種方式來實現的,例如:PhoneGap、WebViewJavascriptBridge。關於這種方式呼叫OC方法,唐巧早期有篇文章有過介紹: 關於UIWebView和PhoneGap的總結

方式二

在iOS 7之後,apple新增了一個新的庫JavaScriptCore,用來做JS互動,因此JS與原生OC互動也變得簡單了許多。 首先匯入JavaScriptCore庫, 然後在OC中獲取JS的上下文

JSContext *context = [self.webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
複製程式碼

再然後定義好JS需要呼叫的方法,例如JS要呼叫share方法: 則可以在UIWebView載入url完成後,在其代理方法中新增要呼叫的share方法:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    JSContext *context = [self.webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    //定義好JS要呼叫的方法, share就是呼叫的share方法名
    context[@"share"] = ^() {
        NSLog(@"+++++++Begin Log+++++++");
        NSArray *args = [JSContext currentArguments];
      
        dispatch_async(dispatch_get_main_queue(), ^{
            UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"方式二" message:@"這是OC原生的彈出窗" delegate:self cancelButtonTitle:@"收到" otherButtonTitles:nil];
            [alertView show];
        });
        
        for (JSValue *jsVal in args) {
            NSLog(@"%@", jsVal.toString);
        }
        
        NSLog(@"-------End Log-------");
    };
}
複製程式碼

注意: 可能最新版本的iOS系統做了改動,現在(iOS9,Xcode 7.3,去年使用Xcode 6 和iOS 8沒有執行緒問題)中測試,block中是在子執行緒,因此執行UI操作,控制檯有警告,需要回到主執行緒再操作UI。

其中相對應的html部分如下:

<html>
    <header>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <script type="text/javascript">
        
            function secondClick() {
                share('分享的標題','分享的內容','圖片地址');
            }
        
        function showAlert(message){
            alert(message);
        }
        
        </script>
    </header>
    
    <body>
        <h2> 這裡是第二種方式 </h2>
        <br/>
        <br/>
        <button type="button" onclick="secondClick()">Click Me!</button>
        
    </body>
</html>
複製程式碼

JS部分確實要簡單的多了。

OC呼叫JS篇

方式一

NSString *jsStr = [NSString stringWithFormat:@"showAlert('%@')",@"這裡是JS中alert彈出的message"];
[_webView stringByEvaluatingJavaScriptFromString:jsStr];
複製程式碼

注意:該方法會同步返回一個字串,因此是一個同步方法,可能會阻塞UI。

方式二

繼續使用JavaScriptCore庫來做JS互動。

JSContext *context = [self.webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
NSString *textJS = @"showAlert('這裡是JS中alert彈出的message')";
[context evaluateScript:textJS];
複製程式碼

重點: stringByEvaluatingJavaScriptFromString是一個同步的方法,使用它執行JS方法時,如果JS 方法比較耗的時候,會造成介面卡頓。尤其是js 彈出alert 的時候。 alert 也會阻塞介面,等待使用者響應,而stringByEvaluatingJavaScriptFromString又會等待js執行完畢返回。這就造成了死鎖。 官方推薦使用WKWebViewevaluateJavaScript:completionHandler:代替這個方法。 其實我們也有另外一種方式,自定義一個延遲執行alert 的方法來防止阻塞,然後我們呼叫自定義的alert 方法。同理,耗時較長的js 方法也可以放到setTimeout 中。

function asyncAlert(content) {
    setTimeout(function(){
         alert(content);
         },1);
}
複製程式碼

我也寫了一個demo,包括JS與OC互動的兩種方式。 JS_OC_summary

如果你下載不了,先回到工程的一級目錄再下載

如果你看的還不盡興,後面還有幾篇JS相互呼叫的文章。

iOS下JS與OC互相呼叫(一)--UIWebView 攔截URL

iOS下JS與OC互相呼叫(二)--WKWebView 攔截URL

iOS下JS與OC互相呼叫(三)--MessageHandler

iOS下JS與OC互相呼叫(四)--JavaScriptCore

iOS下JS與OC互相呼叫(五)--UIWebView + WebViewJavascriptBridge

iOS下JS與OC互相呼叫(六)--WKWebView + WebViewJavascriptBridge

iOS下JS與OC互相呼叫(七)--Cordova 基礎

iOS下JS與OC互相呼叫(八)--Cordova詳解+實戰

相關文章