下面首先完全copy了Cocoas官网上的内容,这里主要是做个笔记,初学JS调用IOS原声代码遇到的问题
官网地址:https://docs.cocos.com/creator/manual/zh/advanced-topics/oc-reflection.html
使用 Creator 打包的 iOS / Mac 原生应用中,我们也提供了在 iOS 和 Mac 上 JavaScript 通过原生语言的反射机制直接调用 Objective-C 函数的方法,示例代码如下:
var result = jsb.reflection.callStaticMethod(className, methodName, arg1, arg2, .....);
在 jsb.reflection.callStaticMethod
方法中,我们通过传入 OC 的类名,方法名,参数就可以直接调用 OC 的静态方法,并且可以获得 OC 方法的返回值。注意仅仅支持调用可访问类的静态方法。
警告:苹果 App Store 在 2017 年 3 月对部分应用发出了警告,原因是使用了一些有风险的方法,其中 respondsToSelector:
和 performSelector:
是反射机制使用的核心 API,在使用时请谨慎关注苹果官方对此的态度发展,相关讨论:JSPatch、React-Native、Weex
NativeOcClass
,只要你将他引入工程,那么他的类名就是 NativeOcClass
,你并不需要传入它的路径。import
@interface NativeOcClass : NSObject
+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content;
@end
+(BOOL)callNativeUIWithTitle:(NSString *)title andContent:(NSString *)content;
callNativeWithReturnString
,由于没有参数,就不需要 :,跟 OC 的 method 写法一致。+(NSString *)callNativeWithReturnString;
NativeOcClass
的方法,在 JS 层我们只需要这样调用:var ret = jsb.reflection.callStaticMethod("NativeOcClass",
"callNativeUIWithTitle:andContent:",
"cocos2d-js",
"Yes! you call a Native UI from Reflection");
title
和 content
设置成你传入的参数,并返回一个 boolean 类型的返回值。+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title message:content delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alertView show];
return true;
}
ret
中接收到从 OC 传回的返回值(true)了。在 OC 的实现中,如果方法的参数需要使用 float、int、bool 的,请使用如下类型进行转换:
+(float) addTwoNumber:(NSNumber *)num1 and:(NSNumber *)num2{
float result = [num1 floatValue]+[num2 floatValue];
return result;
}
通过上面方式调用OC原声代码的时候要注意一个点,
var ret = jsb.reflection.callStaticMethod("NativeOcClass",
"callNativeUIWithTitle:andContent:",
"cocos2d-js",
"Yes! you call a Native UI from Reflection");
callNativeUIWithTitle:andContent:
这个地方,注意!调用带参数的方法的时候一点不能写成callNativeUIWithTitle,如果是上面的声明方法必须写成"callNativeUIWithTitle:andConten: ",这里是带两个参数,第一个“:”和第二个“:”必须要,
如果不带参数就是“callNativeUIWithTitle”
带一个参数就是“callNativeUIWithTitle”
否者会方法找不到的错误