【iOS開發】UIWebView與JavaScript(JS) 回調交互

-------------------------------------------------
不少關於objc 與 js 交互的文章都比較適用於 mac開發,iOS的webview 仍是有所不同,
本文提供了一個很好解決UIWebView內js和objc 交互的思路。
天然,從oc到js,可使用 stringByEvaluatingJavaScriptFromString: 來實現。
從js到oc,採用比較巧妙的設計,UIWebView瀏覽器攔截 url請求,自定義url的方式攔截交互請。
-------------------------------------------------
-------------------------------------------------

UIWebView是IOS SDK中渲染網面的控件,在顯示網頁的時候,咱們能夠hack網頁而後顯示想顯示的內容。其中就要用到javascript的知識,而UIWebView與javascript交互的方法就是stringByEvaluatingJavaScriptFromString:javascript

有了這個方法咱們能夠經過objc調用javascript,能夠注入javascript。html

首先咱們來看一下,如何調用javascript:java

 
  1. [webView stringByEvaluatingJavaScriptFromString:@"myFunction();"];  

這兒myFunction()就是咱們的javascript方法。git

 

再來看看入何注入javascript,咱們先寫一個須要注入的javascript:github

 
  1. function showAlert() {  
  2.     alert('in show alert');  
  3. }  

保存爲test.js,而後拖到xcode 的resource分組下。再用代碼在初始化的時候注入這個js(如在viewDidLoad方法裏)。web

 
  1. NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"js"];  
  2. NSString *jsString = [[NSString alloc] initWithContentsOfFile:filePath];  
  3. [webView stringByEvaluatingJavaScriptFromString:jsString];  

這樣就注入了上面的js,那麼咱們能夠隨時調用js的方法,如何調用,上面有介紹。xcode

  

那麼咱們能不能經過js來調用objc的方法呢。 固然能夠,原理就是利用UIWebView重定向請求,傳一些命令到咱們的UIWebView,在UIWebView的delegate的方法中接收這些命令,並根據命令執行相應的objc方法。這樣就至關於在javascript中調用objc的方法。提及來有點抽象,看看代碼一下就明白。瀏覽器

首先咱們寫一個javascript 方法以下:app

[javascript] 
  1. function sendCommand(cmd,param){  
  2.     var url="testapp:"+cmd+":"+param;  
  3.     document.location = url;  
  4. }  
  5. function clickLink(){  
  6.     sendCommand("alert","你好嗎?");  
  7. }  

而後在你的html裏調用這個js方法 如: 框架

[javascript] 
  1. "button" value="Click me!" onclick="clickLink()" />
      


最後咱們在UIWebVew中截獲這個重定向請求:

 
  1. #pragma mark --   
  2. #pragma mark UIWebViewDelegate   
  3.   
  4. - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {  
  5.       
  6.     NSString *requestString = [[request URL] absoluteString];  
  7.     NSArray *components = [requestString componentsSeparatedByString:@":"];  
  8.     if ([components count] > 1 && [(NSString *)[components objectAtIndex:0] isEqualToString:@"testapp"]) {  
  9.         if([(NSString *)[components objectAtIndex:1] isEqualToString:@"alert"])   
  10.         {  
  11.             UIAlertView *alert = [[UIAlertView alloc]   
  12.                                   initWithTitle:@"Alert from Cocoa Touch" message:[components objectAtIndex:2]  
  13.                                   delegate:self cancelButtonTitle:nil  
  14.                                   otherButtonTitles:@"OK", nil];  
  15.             [alert show];  
  16.         }  
  17.         return NO;  
  18.     }  
  19.     return YES;  
  20. }  

 

 

 不過有一個開源工程你們能夠看看,它容許javascript調用objective_c的方法。叫

jsbridge-to-cocoa   http://code.google.com/p/jsbridge-to-cocoa/

還有兩個相關工程

WebViewJavascriptBridge 與 GAJavaScript 值得你們慢慢研究。

 

其餘

插入js代碼

上面的功能咱們能夠封裝到一個js函數中,將這個函數插入到頁面上執行,代碼以下:

if ([title compare: @"Google"]==NSOrderedSame ) { 
[webView stringByEvaluatingJavaScriptFromString:@"var script = document_createElement_x_x('script');" 
"script.type = 'text/javascript';" 
"script.text = "function myFunction() { " 
"var field = document.getElementsByName('q')[0];" 
"field.value='朱祁林';" 
"document.forms[0].submit();" 
"}";" 
"document.getElementsByTagName_r('head')[0].a(script);"]; 
[webView stringByEvaluatingJavaScriptFromString:@"myFunction();"]; 
}

看上面的代碼:

a、首先經過js建立一個script的標籤,type爲'text/javascript'。

b、而後在這個標籤中插入一段字符串,這段字符串就是一個函數:myFunction,這個函數實現google自動搜索關鍵字的功能。

c、而後使用stringByEvaluatingJavaScriptFromString執行myFunction函數。

 

1. 通常調用

將本地數據,封裝,直接做爲JS的返回值。如:獲取軟件的APPCode

//獲取APPCode

 NSArray *_plist_paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
 NSString *_plist_paths_path=[_plist_paths objectAtIndex:0];
 NSArray *_plist_array= [_plist_paths_path componentsSeparatedByString:@"/"];
 NSString *_appcode=[[NSString alloc]init];
 for (NSString *item in _plist_array) {
  if ([item length]==36) {
   _appcode=item;
   break;
  }
 }
 NSLog(@"current appcode:%@",_appcode);

//注入到js中
 NSMutableString *_getApkCode=[[NSMutableString alloc]init];
 [_getApkCode appendFormat:@" function  _getApkCode(){"];
 [_getApkCode appendFormat:@"return '%@';",_appcode];
 [_getApkCode appendString:@" }"];
 [self.webView stringByEvaluatingJavaScriptFromString:_getApkCode];
 [_getApkCode release];

2.須要跟平臺進行交互調用

思路:

1.製造含有必定含義的請求如:(location.href="download");

2.在方法:-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType中,攔截:

//testMall:http://192.168.1.20:8083本地測試頁面地址

NSString *pre_download=[NSString stringWithFormat:@"%@downLoad",testMall];
 if([url hasPrefix:pre_download])
 { 

//下載代碼。。。。

}

3. 注意事項

a.存在Iframe嵌套的頁面,js注入

頁面注入JS是注入到,瀏覽器的html中,對於內部嵌套iframe框架的頁面,則沒法調用到js。此時至關於調用父頁面的JS。

能夠經過parent+方法名,來調用你注入的JS。parent.parent的使用個數,能夠是多個,不影響js的執行,若是少用parent,可能會致使,調不到你注入的JS

b.存在交互的處理方法。推薦使用方法,iphone只負責提供js接口,不調用html內部或其餘的js接口

  

示例:

html

function addDownload()

{

url='www.XXX.XXX.zip';

download(url);//調用iphone提供的js接口

addDownloadTask_ret();//獲取iphone下載接口執行的下載結果,此處調的是本地的一個延遲方法

}

//獲取iphone下載接口執行的下載結果

function addDownloadTask_ret()
{

var obj=getDownloadTaskResult();//此處爲iphone提供的接口,負責返回當前下載執行狀況的結果if(''!=obj||undefined!=obj)

{

//調用本地的一些後續處理方法。

}

else

{

setTimeout("addDownloadTask_ret2();",1000);

}

}  
-------------------------------------------------
相關文章
相關標籤/搜索