iOS 基于JSPatch的热更新基础使用方法

JSPatch官方介绍:

JSPatch 可以让你用 JavaScript 书写原生 iOS APP。只需在项目引入极小的引擎,就可以使用 JavaScript 调用任何 Objective-C 的原生接口,获得脚本语言的优势:为项目动态添加模块,或替换项目原生代码动态修复 bug

做热更新也有其他的方案可以用,比如WaxPatch,FaceBook的React Native框架,感兴趣的朋友可以去学习一下,本文就不在阐述了,下面就简单说一下JSPatch的具体使用方法,东西比较浅显,希望能帮到刚接触热更新的朋友,也算给自己的学习留个笔记吧.

新建工程导入JSPatch第三方,这里我用的是cocoapos.

platform :ios,'9.3'

target"HotfixPatchDemo" do

pod 'JSPatch', '~> 1.0'

end

在appdelegate中的didFinishLaunching方法初始化JSPatch引擎,读取JS文件并执行,因为是自己写的demo我把JS文件保存在本地了,如果从服务器获取的话可以把下载的JS文件存在相应的路径中,然后在didFinishLaunching方法中读取执行就可以了.其实到这步就可以实现热更新了,当然,还有最重要的就是JS文件.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

//初始化JSPatch引擎

[JPEngine startEngine];

//[self connectServerGetJSData];

//因为demo是本地的js文件 就在本地读取了 服务器获取的话应该读取保存文件的路径

NSString *sourcePath = [[NSBundle mainBundle] pathForResource:@"js" ofType:@"js"];

NSString *script = [NSString stringWithContentsOfFile:sourcePath encoding:NSUTF8StringEncoding error:nil];

//执行js文件

[JPEngine evaluateScript:script];

self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];

ViewController *VC = [[ViewController alloc]init];

self.window.rootViewController = VC;

[self.window makeKeyAndVisible];

return YES;

}

我这里就直接贴出demo中的JS代码了,一个简单的模态跳转,其他的写法在https://github.com/bang590/JSPatch/blob/master/README-CN.md 里都有介绍,感兴趣的朋友可以自行翻阅

//require()引用需要用到的类

//defineClass()方法具体用法 请查阅官方文档(用法比较多就不一一介绍了)

require('UIViewController,UIColor');

//创建DemoViewController类 继承自UIViewController

defineClass('DemoViewController : UIViewController');

//在DemoViewController里重写viewDidLoad方法

defineClass("DemoViewController",{

viewDidLoad :function(){

self.super().viewDidLoad();

self.view().setBackgroundColor(UIColor.grayColor());

}

});

//注意defineClass参数要用","分开.

require('ViewController,UIColor,UIButton,DemoViewController');

defineClass('ViewController',{

viewDidLoad: function() {

self.super().viewDidLoad();

self.view().setBackgroundColor(UIColor.cyanColor());

var button = UIButton.alloc().init();

button.setFrame({x:100, y:300, width:200, height:100});

button.titleLabel().setText("test");

button.setTitle_forState("test", 0);

button.setBackgroundColor(UIColor.blackColor());

//枚举值为位计算的 如 1<<6 可以使用计算出的具体数字 也可以直接用枚举名TouchUpInside 也可以直接填1<<6

button.addTarget_action_forControlEvents(self,"action",64 );

self.view().addSubview(button);

},

//btn的点击事件

action: function(){

var demoVC = DemoViewController.alloc().init();

self.presentViewController_animated_completion(demoVC,YES,null);

},

});

用JSPatch做热更新最难的地方就是在编写JS代码上,当然如果你有JS编程经验例外,好在官方提供了相当详细的文档,没有任何JS基础的也可以轻松实现各种基本功能,地址在上文已经给出. 

最后再说一下我自己的想法: 热更新还是有一些不完美的地方,比较适合用来修复BUG和添加一些小的功能,大版本的更新还是要自己慢慢开发.

你可能感兴趣的:(iOS 基于JSPatch的热更新基础使用方法)