JavaScriptCore实现OC与JavaScript交互(一)

个人觉得学习iOS方面的知识,还得需要看苹果的开发文档,网上的教程还是比较片面,只能交给你怎么用,但是原理很少讲。这篇文章我主要讲的是文档里比较难理解的东西。 Demo地址:JavaScriptCoreTest

JSExport

The JSExport protocol provides a declarative way to export Objective-C instance classes and their instance methods, class methods, and properties to JavaScript code.

JSExport提供了一个声明的方式,来把OC的类,实例方法,类方法,属性这四方面暴露给JavaScript。这样一来JavaScript就可以调用OC的类方法或init方法创建实例,给属性赋值,调用实例的方法等。

Exporting Objective-C Objects to JavaScript

When you create a JavaScript value from an instance of an Objective-C class, and the JSValue class does not specify a copying convention, JavaScriptCore creates a JavaScript wrapper object. (For certain classes, JavaScriptCore automatically copies values to the appropriate JavaScript type; for example, NSString instances become JavaScript strings.)

JSValue是个什么东西呢?JSValue是对JavaScript事物的引用,我们知道JavaScript所有事物都是对象,那么JavaScriptCore就用JSValue来作为JavaScript value的标识。JSValue类可以用来转换OC与JavaScript的basic values(number, string等)来达到pass data的目的。比如说OC需要一个NSString对象,现在你知道了这个对象的JSValue值,那么可以调用- toString方法转换成NSString对象。如果你要传给JavaScriptCore一个JSValue,同理你调用[JSValue valueWithObject:inContext]可以将NSString对象a转换成JSValue value。

当你创建OC object的JSValue时,JSValue类并不能指定拷贝的约定,耳JavaScriptCore可以创建一个JavaScript包装对象来实现value的copy。

In JavaScript, inheritance is supported via a chain of prototype objects. For each Objective-C class you export, JavaScriptCore creates a prototype within the enclosing JavaScript context (a JSContext object). For the NSObject class, the prototype object is the JavaScript context's Object prototype. For all other Objective-C classes, JavaScriptCore creates a prototype object whose internal [Prototype] property points to the prototype property created for the Objective-C class's superclass. As such, the prototype chain for a JavaScript wrapper object reflects the wrapped Objective-C type's inheritance hierarchy.

JavaScript不是面向对象语言,而是基于对象语言。所以其就没有类,继承,多态,封装等属性。但是JavaScript可以使用a chain of prototype objects(原始对象响应链)的方式实现继承等。具体JavaScript如何实现自定义类和继承,可以上网查。我们的JavaScriptCore会为我们的NSObject或其他OC类创建一个prototype object来实现OC自定义类对象转换为JS自定义类对象。

Exposing Objective-C Methods and Properties to JavaScript

By default, no methods or properties of the Objective-C class are exposed to JavaScript; instead, you must choose methods and properties to export. For each protocol that a class conforms to, if the protocol incorporates the JSExport protocol, then JavaScriptCore interprets that protocol as a list of methods and properties to be exported to JavaScript.

For each instance method exported, JavaScriptCore creates a corresponding JavaScript function as a property of the prototype object. For each Objective-C property exported, JavaScriptCore creates a JavaScript accessor property on the prototype. For each class method exported, JavaScriptCore creates a JavaScript function on the constructor object. For example, Listing 1 and Listing 2 illustrate adoption of the JSExport protocol and the API presented by an exported class in JavaScript.

在JavaScript中,因为所有事物都是对象,所以function(函数)也是一个对象。在JavaScript code里有这样语句就不奇怪了:var calSum = function() {...};

For example, Listing 1 and Listing 2 illustrate adoption of the JSExport protocol and the API presented by an exported class in JavaScript.

Listing 1
Exporting an Objective-C Class to JavaScript

@protocol MyPointExports <JSExport>
@property double x;
@property double y;
- (NSString *)description;
- (instancetype)initWithX:(double)x y:(double)y;
+ (MyPoint *)makePointWithX:(double)x y:(double)y;
@end
@interface MyPoint : NSObject <MyPointExports>
- (void)myPrivateMethod;  // Not in the MyPointExports protocol, so not visible to JavaScript code.
@end
@implementation MyPoint
// ...
@end

Listing 2
Using an Exported Objective-C Class from JavaScript

// Objective-C properties become fields.
point.x;
point.x = 10;
// Objective-C instance methods become functions.
point.description();
// Objective-C initializers can be called with constructor syntax.
var p = MyPoint(1, 2);
// Objective-C class methods become functions on the constructor object.
var q = MyPoint.makePointWithXY(0, 0);

Bug:OC的initializers可以用constructor syntax.(构造函数)来实现,上面的代码var p = MyPoint(1, 2)确实也是这样。可是我自己在demo中用类似的方式根本不会创建实例p成功,后来网上查了下这样写才是正确的。给自己的initializers打了断点,确实是JS调用了。上面代码就var p = MyPoint(1, 2)有问题,其他类方法,属性赋值,实例方法调用是没问题的。

var p = new MyPoint(1, 2);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,009评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,808评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,891评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,283评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,285评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,409评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,809评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,487评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,680评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,499评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,548评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,268评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,815评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,872评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,102评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,683评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,253评论 2 341

推荐阅读更多精彩内容

  • OC与JS交互之JavaScriptCore 本文摘抄自:https://hjgitbook.gitbooks.i...
    大冲哥阅读 1,017评论 0 1
  • 写在前面 本篇文章是对我一次组内分享的整理,大部分图片都是直接从keynote上截图下来的,本来有很多炫酷动效的,...
    等开会阅读 14,377评论 6 69
  • 在我们生活的这个世界里 时间是经 空间是纬 细细密密地织出了一个个悲欢离合 织出了很多相似的、有规律的阴差阳错 而...
    魏幺九阅读 430评论 14 4
  • 雨曦minute阅读 315评论 0 2
  • 简书iOS 2.0已经发布几周了,相信大家都已经下载体验啦,我们也在根据大家的提议进行新功能开发。本周发布的简书2...
    简书阅读 1,269评论 30 17