本篇文章給大家分享的內容是如何實現OC與JS的交互,有著一定的參考價值,有需要的朋友可以參考一下
oc 程式碼
#import <JavaScriptCore/JavaScriptCore.h>
- (void) webViewDidFinishLoad:(UIWebView *)webView{ JSContext *context = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"]; context[@"favQues"] = ^{ NSArray *a = [JSContext currentArguments]; for (id obj in a) { NSLog(@"obj:%@",obj); } }; }
其中favQues 是JS 中傳回資料的函數,obj 是JS 傳給OC 的值。
JS 程式碼
function QMAction(id, subject, el) { favQues(id,subject,el); }
其中QMAction 是HTML中的方法,id、subject,el是傳進去的參數,favQues 是回傳數據的函數,必須與OC 程式碼中的保持一致。
OC 程式碼
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{ NSString *requestUrlStr = [[request.URL absoluteString] stringByRemovingPercentEncoding]; if ([requestUrlStr hasPrefix:@"objc://"]) { NSArray *a = [requestUrlStr componentsSeparatedByString:@"://"]; NSString *paramStr = a[1]; NSArray *a1 = [paramStr componentsSeparatedByString:@":/"]; if (a1.count > 0) { NSLog(@"%@-%@",a1[1],a1[2]); }else{ NSLog(@"没有参数"); } return NO; } return YES; }
#JS 程式碼##
function QMAction(at, id, subject, el) { window.location.href="objc://"+":/"+subject+":/"+id; }其中objc :// 是與後台商量好的自訂協定頭subject 和id 是JS 傳給OC 的值,經由:/ 隔開。
以上是如何實現OC與JS的交互的詳細內容。更多資訊請關注PHP中文網其他相關文章!