【轉】UIWebView與JavaScript

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

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

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

 

[cpp]  view plain copy
  1. [webView stringByEvaluatingJavaScriptFromString:@"myFunction();"];  
[cpp]  view plain copy
  1. [webView stringByEvaluatingJavaScriptFromString:@"myFunction();"];  


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

 

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

 

[cpp]  view plain copy
  1. function showAlert() {  
  2.     alert('in show alert');  
  3. }  
[cpp]  view plain copy
  1. function showAlert() {  
  2.     alert('in show alert');  
  3. }  


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

 

 

[cpp]  view plain copy
  1. NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"js"];  
  2. NSString *jsString = [[NSString alloc] initWithContentsOfFile:filePath];  
  3. [webView stringByEvaluatingJavaScriptFromString:jsString];  
[cpp]  view plain copy
  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的方法。提及來有點抽象,看看代碼一下就明白。app

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

[javascript]  view plain copy
  1. function sendCommand(cmd,param){  
  2.     var url="testapp:"+cmd+":"+param;  
  3.     document.location = url;  
  4. }  
  5. function clickLink(){  
  6.     sendCommand("alert","你好嗎?");  
  7. }  
[javascript]  view plain copy
  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方法 如:google

 

[javascript]  view plain copy
  1. <input type="button" value="Click me!" onclick="clickLink()" /><br/>  
[javascript]  view plain copy
  1. <input type="button" value="Click me!" onclick="clickLink()" /><br/>  


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

 

 

[cpp]  view plain copy
  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. }  
[cpp]  view plain copy
  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. }  



 

看了代碼是否是清楚得不能再清楚了呀?  我想phonegap可能與是這樣實現的,沒去研究過。 不過有一個開源工程你們能夠看看,它容許javascript調用objective_c的方法。叫jsbridge-to-cocoa

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

還有兩個相關工程

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

相關文章
相關標籤/搜索