本文包括JS調用OC方法並傳值,OC調用JS方法並傳值html
原本想把html放進服務器裏面,而後訪問,可是以爲若是html在本地加載更有助於理解,特把html放進項目裏java
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <div style="margin-top: 20px"> <h2>JS與OC交互</h2> <input type="button" value="喚起本地方法(call)" onclick="tianbai.call()"> </div> <div> <input type="button" value="喚起getCall:(NSString *)callString傳值" onclick="call()"> </div> <script> var call = function() { var callInfo = JSON.stringify({"jianshu": "http://www.jianshu.com/users/55c8fdc3c6e7/latest_articles"}); tianbai.getCall(callInfo); } var Callback = function(str) { alert(str); } var alerCallback = function() { alert('成功'); } </script> </body> </html>
上面html的代碼:創建了兩個buttonweb
第一個button綁定了 tianbai.call()
方法,這裏 tianbai
是一個對象,這個對象的做用下面OC代碼中會說明, tianbai.call()
表明 tianbai
對象調用 call()
方法服務器
第二個button綁定了 call()
的方法,調用的是下面JavaScript中的 call()
方法,在 JavaScript 的 call()
裏面,定義一個 callInfo
參數,方法中 tianbai.getCall(callInfo)
表明 tianbai
對象調用 getCall
方法並傳參數 callInfo
,下面兩個方法是OC調用JavaScript方法,其中Callback傳回str,alerCallback爲OC僅調用JavaScript方法!網絡
demo採用原生的JavaScriptCore類atom
引入三個名詞:lua
ViewController.h中的代碼url
// // ViewController.h // JavaScript // // Created by tianbai on 16/6/8. // Copyright © 2016年 廈門乙科網絡公司. All rights reserved. // #import <UIKit/UIKit.h> #import <JavaScriptCore/JavaScriptCore.h> @protocol JSObjcDelegate <JSExport>
- (void)call; - (void)getCall:(NSString *)callString; @end
@interface ViewController : UIViewController<UIWebViewDelegate, JSObjcDelegate>
@property (nonatomic, strong) JSContext *jsContext; @property (strong, nonatomic) UIWebView *webView; @end
ViewController.m中的代碼spa
// // ViewController.m // JavaScript // // Created by tianbai on 16/6/8. // Copyright © 2016年 廈門乙科網絡公司. All rights reserved. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; }
- (void)viewDidAppear:(BOOL)animated {
self.webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 20, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)]; self.webView.delegate = self; NSString* path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]; NSURL* url = [NSURL fileURLWithPath:path]; NSURLRequest* request = [NSURLRequest requestWithURL:url] ; [self.webView loadRequest:request]; [self.view addSubview:self.webView]; }
- (void)webViewDidFinishLoad:(UIWebView *)webView {
self.jsContext = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"]; self.jsContext[@"tianbai"] = self; self.jsContext.exceptionHandler = ^(JSContext *context, JSValue *exceptionValue) {
context.exception = exceptionValue; NSLog(@"異常信息:%@", exceptionValue); }; } - (void)call {
NSLog(@"call"); // 以後在回調js的方法Callback把內容傳出去 JSValue *Callback = self.jsContext[@"Callback"]; //傳值給web端 [Callback callWithArguments:@[@"喚起本地OC回調完成"]]; } - (void)getCall:(NSString *)callString {
NSLog(@"Get:%@", callString); // 成功回調js的方法Callback JSValue *Callback = self.jsContext[@"alerCallback"]; [Callback callWithArguments:nil]; // 直接添加提示框 // NSString *str = @"alert('OC添加JS提示成功')"; // [self.jsContext evaluateScript:str]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end