聽到有朋友說lua可以進(jìn)行線上版本bug的修復(fù),就試著學(xué)習(xí)一下跨细,用到的框架地址:https://github.com/alibaba/wax 傲须,很多網(wǎng)上的資料說不支持64位赦肋,但現(xiàn)在看來是已經(jīng)支持了。
Use with cocoa pods
add
pod 'wax', :git=>'https://github.com/alibaba/wax.git', :tag=>'1.1.0'
then you can run lua code.放置AppDelegate中哮塞。
wax_start(nil, nil);
wax_runLuaString("print('hello wax')");
記的導(dǎo)入wax.h
運(yùn)行成功,說明你已經(jīng)成功集成凳谦。
在本地創(chuàng)建一個空的文件忆畅,文件命名為test.lua。
waxClass{"VC1",UIViewController}
function touchesBegan_withEvent(self,touches,event)
self:view():setBackgroundColor(UIColor:blueColor())
end
創(chuàng)建ViewController命名為VC1尸执,實現(xiàn)方法
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
NSLog(@"sss");
}
在AppDelegate中
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
wax_start("test.lua", nil);
return YES;
}
運(yùn)行下你會發(fā)現(xiàn)VC1 中的touchesBegan方法被替換了家凯。VC1的背景顏色變成藍(lán)色了。
以上就是本地運(yùn)行l(wèi)ua文件的效果剔交。當(dāng)然更多的時候我們是從服務(wù)器上把lua文件下載本地肆饶,然后運(yùn)行時進(jìn)行一些有問題的解決(替換方法等)。這里只做簡單的思路介紹岖常。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[self downloadLuaFile];
return YES;
}
- (void)downloadLuaFile{
dispatch_async(dispatch_get_main_queue(), ^{
NSString *fileName = @"change_002.lua"; //本地要保存的文件名稱驯镊。
NSString *doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *directory = [doc stringByAppendingPathComponent:fileName];
NSURL *url=[NSURL URLWithString:@"http://localhost/xxxx.lua"]; //lua文件的服務(wù)器地址
NSURLRequest *request=[NSURLRequest requestWithURL:url];
NSError *error=nil;
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error];
if([data length]>0)
{
NSLog(@"下載成功");
if([data writeToFile:directory atomically:YES]){
NSLog(@"保存成功");
NSString *luaFilePath = [[NSString alloc ] initWithFormat:@"%@/?.lua;%@/?/init.lua;%@/?.dat;",doc, doc,doc];
setenv(LUA_PATH, [luaFilePath UTF8String], 1); //設(shè)置LUA路徑
wax_start("change_002.lua", nil);
}else {
NSLog(@"保存失敗");
}
} else {
NSLog(@"下載失敗,失敗原因:%@",error);
}
});
}
基本用法就是這樣竭鞍,剩下的一些邏輯可以自己完善板惑。
比如通過請求接口獲取lua文件的地址。對已經(jīng)存在的lua文件在應(yīng)用啟動的時候應(yīng)該做什么樣的操作偎快。后面有時間會去更深入的學(xué)習(xí)lua的實用技巧