最近用上了JSPatch,好用是好用,但是因为JS不熟还是踩到许多坑,浪费了不少时间。这里做个记录,不定期更新。
Block使用
cell.selectBlock = ^(NSUInteger index){
};
上面的代码换成JS,应该是:
var func = function(index){
};
cell.setSelectBlock(block("NSUInteger", func)); //因为是setter,所以要用set开头
带下划线的变量或方法
看下面的代码:
var hotgoods_moreurl= dataHome.hotgoods_moreurl();
单步调试到这一行代码时报错:method signature argument cannot be nil。加入JSPatch源码得到更详细的报错信息:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unrecognized selector hotgoods:moreurl for instance '。
看到了吗,本来是访问hotgoods_moreurl变量的,结果变成了访问名为hotgoods:moreurl的selector。
究其原因,还是因为变量名中有下划线,而文档中说明原OC方法名有下划线在的,在JS中要用双下划线代替。
还是没仔细看文档惹的祸!!!
for循环
for (var constraint in view.superview().constraints()) {}
粗看没问题,一用大有问题,在访问constraint的某个属性时直接报错并崩溃,错误提示:
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'js exception, msg: undefined is not an object (evaluating 'this[methodName].bind')
—— JS里这样for循环也是有问题的
归根到底是JS中的Array与OC中的NSArray是不同的,在js中访问NSArray中的元素还是乖乖用ObjectAtIndex方法,并使用正常的for循环方法:
var count = view.superview().constraints().count();
var index = 0;
for (index = 0; index < count; index++) {
var constraint = view.superview().constraints().objectAtIndex(index);
}
比较
viewA和viewB比较在OC里可以用viewA == viewB,但是在JS里进行类似的比较却是会出问题的,在OC里面相等而在JS里面未必相等。
正确办法是用isEqual来进行viewA和viewB的比较。
网友评论
[investAlertView dismissWithCompletion:^{
[self.view endEditing:YES];
[self investButtonAction];
}];
},这是完整的oc方法,里面investAlertView是自定义view全局的,dimss是一个消失的的block,就这个block转换成js,一直不行,