1、依照官方文档新建main.js文件。在JS文件中用哪个控件require('')则这个控件中间用逗号隔。例如:require('UIView,UIColor,UILabel,UIViewController')
2、操作类用defineClass("类名")。例如:defineClass("MainViewController")。
2、ORIG 不替换原来的类方法。例如:self.ORIGviewDidLoad();原来程序中viewDidLoad的内容不被覆盖。
3、调用对象要加上(),对象调OC方法加上set。例如:self.view().setBackgroundColor(UIColor.yellowColor());
附上写的main.js