How to embed iPhone-Wax into app

故事扮演 提交于 2019-12-04 16:12:28

问题


I have just learnt about iPhone-Wax (thanks to SO). Now the documentation is rather sparse for what I am trying to do.

I want to embed it into an Objective-C app. I don't want it to be the main app. Has anyone done it and how can I achieve it?

I would like to use it in the same way LuaObjectiveCBridge is used.


回答1:


If I understand correctly, you want to create an ad-hoc Lua class?! It is as simple as this:

you have a Lua script (script.lua):

waxClass{"LuaClass"}
function myMethod(self, object)
 object:doSomething()
end

and in your obj-c code:

...
luaL_dofile(wax_currentLuaState(), "script.lua");
MyClass *o = [[MyClass alloc] init];
Class LuaClass = NSClassFromString(@"LuaClass");
id luaObject = [[LuaClass alloc] init];
[luaObject performSelector:@selector(myMethod:) withObject:o];
...

Check this gist wrote by Corey.



来源:https://stackoverflow.com/questions/2823964/how-to-embed-iphone-wax-into-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!