ObjectiveC与Js交互是常见的需求,可对于新手或者所谓的高手而言,其实并不是那么简单明了。这里只介绍iOS7.0后出来的JavaScriptCore framework。
本教程中所涉及到的几种类型:
通过JSContext,我们有两种调用JS代码的方法:
// 一个JSContext对象,就类似于Js中的window, // 只需要创建一次即可。 self.jsContext = [[JSContext alloc] init]; // jscontext可以直接执行JS代码。 [self.jsContext evaluateScript:@"var num = 10"]; [self.jsContext evaluateScript:@"var squareFunc = function(value) { return value * 2 }"]; // 计算正方形的面积 JSValue *square = [self.jsContext evaluateScript:@"squareFunc(num)"]; // 也可以通过下标的方式获取到方法 JSValue *squareFunc = self.jsContext[@"squareFunc"]; JSValue *value = [squareFunc callWithArguments:@[@"20"]]; NSLog(@"%@", square.toNumber); NSLog(@"%@", value.toNumber);
这种方式是没有注入模型到JS中的。这种方式使用起来不太合适,通常在JS中有很多全局的函数,为了防止名字重名,使用模型的方式是最好不过了。通过我们协商好的模型名称,在JS中直接通过模型来调用我们在ObjC中所定义的模型所公开的API。
首先,我们需要先定义一个协议,而且这个协议必须要遵守JSExport协议。
@protocol JavaScriptObjectiveCDelegate <JSExport> // JS调用此方法来调用OC的系统相册方法 - (void)callSystemCamera; // 在JS中调用时,函数名应该为showAlertMsg(arg1, arg2) // 这里是只两个参数的。 - (void)showAlert:(NSString *)title msg:(NSString *)msg; // 通过JSON传过来 - (void)callWithDict:(NSDictionary *)params; // JS调用Oc,然后在OC中通过调用JS方法来传值给JS。 - (void)jsCallObjcAndObjcCallJsWithDict:(NSDictionary *)params; @end
接下来,我们还需要定义一个模型:
// 此模型用于注入JS的模型,这样就可以通过模型来调用方法。 @interface HYBJsObjCModel : NSObject <JavaScriptObjectiveCDelegate> @property (nonatomic, weak) JSContext *jsContext; @property (nonatomic, weak) UIWebView *webView; @end
实现这个模型:
@implementation HYBJsObjCModel - (void)callWithDict:(NSDictionary *)params { NSLog(@"Js调用了OC的方法,参数为:%@", params); } // Js调用了callSystemCamera - (void)callSystemCamera { NSLog(@"JS调用了OC的方法,调起系统相册"); // JS调用后OC后,又通过OC调用JS,但是这个是没有传参数的 JSValue *jsFunc = self.jsContext[@"jsFunc"]; [jsFunc callWithArguments:nil]; } - (void)jsCallObjcAndObjcCallJsWithDict:(NSDictionary *)params { NSLog(@"jsCallObjcAndObjcCallJsWithDict was called, params is %@", params); // 调用JS的方法 JSValue *jsParamFunc = self.jsContext[@"jsParamFunc"]; [jsParamFunc callWithArguments:@[@{@"age": @10, @"name": @"lili", @"height": @158}]]; } - (void)showAlert:(NSString *)title msg:(NSString *)msg { dispatch_async(dispatch_get_main_queue(), ^{ UIAlertView *a = [[UIAlertView alloc] initWithTitle:title message:msg delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil]; [a show]; }); } @end
接下来,我们在controller中在webview加载完成的代理中,给JS注入模型。
#pragma mark - UIWebViewDelegate - (void)webViewDidFinishLoad:(UIWebView *)webView { self.jsContext = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"]; // 通过模型调用方法,这种方式更好些。 HYBJsObjCModel *model = [[HYBJsObjCModel alloc] init]; self.jsContext[@"OCModel"] = model; model.jsContext = self.jsContext; model.webView = self.webView; self.jsContext.exceptionHandler = ^(JSContext *context, JSValue *exceptionValue) { context.exception = exceptionValue; NSLog(@"异常信息:%@", exceptionValue); }; }
我们是通过webView的valueForKeyPath获取的,其路径为documentView.webView.mainFrame.javaScriptContext
。 这样就可以获取到JS的context,然后为这个context注入我们的模型对象。
我们先写两个JS方法:
var jsFunc = function() { alert('Objective-C call js to show alert'); } var jsParamFunc = function(argument) { document.getElementById('jsParamFuncSpan').innerHTML = argument['name']; }
这里我们定义了两个JS方法,一个是jsFunc,不带参数。 另一个是jsParamFunc,带一个参数。
接下来,我们在html中的body中添加以下代码:
<div style="margin-top: 100px"> <h1>Test how to use objective-c call js</h1> <input type="button" value="Call ObjC system camera" onclick="OCModel.callSystemCamera()"> <input type="button" value="Call ObjC system alert" onclick="OCModel.showAlertMsg('js title', 'js message')"> </div> <div> <input type="button" value="Call ObjC func with JSON " onclick="OCModel.callWithDict({'name': 'testname', 'age': 10, 'height': 170})"> <input type="button" value="Call ObjC func with JSON and ObjC call js func to pass args." onclick="OCModel.jsCallObjcAndObjcCallJsWithDict({'name': 'testname', 'age': 10, 'height': 170})"> </div> <div> <span id="jsParamFuncSpan" style="color: red; font-size: 50px;"></span> </div>
现在就可以测试代码了。
当我们点击第一个按钮:Call ObjC system camera
时, 通过OCModel.callSystemCamera()
,就可以在HTML中通过JS调用OC的方法。 在OC代码中,我们的callSystemCamera
方法体中,添加了以下两行代码,就是获取HTML中所定义的JS就去jsFunc,然后调用它。
JSValue *jsFunc = self.jsContext[@"jsFunc"]; [jsFunc callWithArguments:nil];
这样就可以在JS调用OC方法时,也让OC反馈给JS。
看看下面传字典参数:
- (void)jsCallObjcAndObjcCallJsWithDict:(NSDictionary *)params { NSLog(@"jsCallObjcAndObjcCallJsWithDict was called, params is %@", params); // 调用JS的方法 JSValue *jsParamFunc = self.jsContext[@"jsParamFunc"]; [jsParamFunc callWithArguments:@[@{@"age": @10, @"name": @"lili", @"height": @158}]]; }
获取我们在HTML中定义的jsParamFunc方法,然后调用它并传了一个字典作为参数。
好了,就讲这么多吧,如果想要Demo源代码,请到 github:https://github.com/CoderJackyHuang/IOSCallJsOrJsCallIOS
想学习Swift版的?请阅读: http://mp.weixin.qq.com/s?__biz=MzIzMzA4NjA5Mw==&mid=214070747&idx=1&sn=57b45fa293d0500365d9a0a4ff74a4e1#rd
原文链接:http://www.henishuo.com/oc-js/