最近準備把以前用UIWebView實現的JS與原生相互調用功能,用WKWebView來替換。順便搜索整理了一下JS 與OC 交互的方式,很是之多啊。目前我已知的JS 與 OC 交互的處理方式:html
我去年也寫過一個相互調用的總結:iOS下JS與原生OC互相調用(總結)。 寫的比較粗糙,所以準備新開一個目錄專題來記錄JS 與原生交互的處理方式。只是記錄JS與OC交互的多種方式,你們能夠根據實際狀況和場景選擇適合本身的方式。git
今天就詳細的介紹一下使用UIWebView攔截URL 的方式來實現JS與OC 的交互。 爲何不使用第三方庫或者RAC呢? 由於就相互調用的接口使用的很是少啊,就那麼三兩個,徹底不必使用牛刀啊。github
我以前就使用的是UIWebView + 攔截URL 的方式實現的JS與OC 交互。 緣由是由於要兼容iOS 6。web
加載本地HTML的目的是便於本身寫JS調用作測試,最終確定仍是加載網絡HTML。json
self.webView = [[UIWebView alloc] initWithFrame:self.view.frame];
self.webView.delegate = self;
NSURL *htmlURL = [[NSBundle mainBundle] URLForResource:@"index.html" withExtension:nil];
// NSURL *htmlURL = [NSURL URLWithString:@"http://www.baidu.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:htmlURL];
// 若是不想要webView 的回彈效果
self.webView.scrollView.bounces = NO;
// UIWebView 滾動的比較慢,這裏設置爲正常速度
self.webView.scrollView.decelerationRate = UIScrollViewDecelerationRateNormal;
[self.webView loadRequest:request];
[self.view addSubview:self.webView];
複製代碼
本地的HTML裏,我定義了幾個按鈕,來觸發調用原生的方法,而後再將執行結果回調到js 裏。bash
<input type="button" value="掃一掃" onclick="scanClick()" />
<input type="button" value="獲取定位" onclick="locationClick()" />
<input type="button" value="修改背景色" onclick="colorClick()" />
<input type="button" value="分享" onclick="shareClick()" />
<input type="button" value="支付" onclick="payClick()" />
<input type="button" value="搖一搖" onclick="shake()" />
<input type="button" value="返回" onclick="goBack()" />
// js 就列幾個比較有表明性的functions:
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 asyncAlert(content) {
setTimeout(function(){
alert(content);
},1);
}
function locationClick() {
loadURL("haleyAction://getLocation");
}
function setLocation(location) {
asyncAlert(location);
document.getElementById("returnValue").value = location;
}
複製代碼
雖然HTML 內容不多,可是還有很多學問:網絡
1.爲何自定義一個
loadURL
方法,不直接使用window.location.href
? 答:由於若是當前網頁正使用window.location.href
加載網頁的同時,調用window.location.href
去調用OC原生方法,會致使加載網頁的操做被取消掉。 一樣的,若是連續使用window.location.href
執行兩次OC原生調用,也有可能致使第一次的操做被取消掉。因此咱們使用自定義的loadURL
,來避免這個問題。loadURL
的實現來自關於UIWebView和PhoneGap的總結一文。app
2.爲何loadURL 中的連接,使用統一的scheme? 答:便於在OC 中作攔截處理,減小在JS中調用一些OC 沒有實現的方法時,webView 作跳轉。由於我在OC 中攔截URL 時,根據scheme (即
haleyAction
)來區分是調用原生的方法仍是正常的網頁跳轉。而後根據host(即//後的部分getLocation
)來區分執行什麼操做。dom
3.爲何自定義一個
asyncAlert
方法? 答:由於有的JS調用是須要OC 返回結果到JS的。stringByEvaluatingJavaScriptFromString
是一個同步方法,會等待js 方法執行完成,而彈出的alert 也會阻塞界面等待用戶響應,因此他們可能會形成死鎖。致使alert 卡死界面。若是回調的JS 是一個耗時的操做,那麼建議將耗時的操做也放入setTimeout
的function
中。async
UIWebView 有一個代理方法,能夠攔截到每個連接的Request。return YES,webView 就會加載這個連接;return NO,webView 就不會加載這個鏈接。咱們就在這個攔截的代理方法中處理本身的URL。 這是個人示例代碼:
#pragma mark - UIWebViewDelegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
NSURL *URL = request.URL;
NSString *scheme = [URL scheme];
if ([scheme isEqualToString:@"haleyaction"]) {
[self handleCustomAction:URL];
return NO;
}
return YES;
}
複製代碼
這裏經過scheme,來攔截掉自定義的URL 就很是容易了,若是不一樣的方法使用不一樣的scheme,那麼判斷起來就很是的麻煩。 而後,看看個人處理鏈接的方法:
#pragma mark - private method
- (void)handleCustomAction:(NSURL *)URL
{
NSString *host = [URL host];
if ([host isEqualToString:@"scanClick"]) {
NSLog(@"掃一掃");
} else if ([host isEqualToString:@"shareClick"]) {
[self share:URL];
} else if ([host isEqualToString:@"getLocation"]) {
[self getLocation];
} else if ([host isEqualToString:@"setColor"]) {
[self changeBGColor:URL];
} else if ([host isEqualToString:@"payAction"]) {
[self payAction:URL];
} else if ([host isEqualToString:@"shake"]) {
[self shakeAction];
} else if ([host isEqualToString:@"goBack"]) {
[self goBack];
}
}
複製代碼
順便看一下如何將結果回調到JS中:
- (void)getLocation
{
// 獲取位置信息
// 將結果返回給js
NSString *jsStr = [NSString stringWithFormat:@"setLocation('%@')",@"廣東省深圳市南山區學府路XXXX號"];
[self.webView stringByEvaluatingJavaScriptFromString:jsStr];
}
複製代碼
固然,有時候咱們在JS中調用OC 方法的時候,也須要傳參數到OC 中,怎麼傳呢? 就像一個get 請求同樣,把參數放在後面:
function shareClick() {
loadURL("haleyAction://shareClick?title=測試分享的標題&content=測試分享的內容&url=http://www.baidu.com");
}
複製代碼
那麼若是獲取到這些參數呢? 全部的參數都在URL的query中,先經過&
將字符串拆分,在經過=
把參數拆分紅key 和實際的值。下面有示例代碼:
- (void)share:(NSURL *)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]];
}
}
NSString *title = [tempDic objectForKey:@"title"];
NSString *content = [tempDic objectForKey:@"content"];
NSString *url = [tempDic objectForKey:@"url"];
// 在這裏執行分享的操做
// 將分享結果返回給js
NSString *jsStr = [NSString stringWithFormat:@"shareResult('%@','%@','%@')",title,content,url];
[self.webView stringByEvaluatingJavaScriptFromString:jsStr];
}
複製代碼
關於將OC 執行結果返回給JS 須要注意的是:
若是回調執行的JS 方法帶參數,而參數不是字符串時,不要加
單引號
,不然可能致使調用JS 方法失敗。好比我這樣的:
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:userProfile options:NSJSONWritingPrettyPrinted error:nil];
NSString *jsonStr = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSString *jsStr = [NSString stringWithFormat:@"loginResult('%@',%@)",type, jsonStr];
[_webView stringByEvaluatingJavaScriptFromString:jsStr];
複製代碼
若是第二個參數用單引號包起來,就會致使JS端的loginResult不會調用。
另外,利用[webView stringByEvaluatingJavaScriptFromString:@"var arr = [3, 4, 'abc'];"];
,能夠往HMTL的JS環境中插入全局變量、JS方法等。
示例工程地址:JS_OC_URL
若是你下載不了,先回到工程的一級目錄再下載。