lua调用c++

1. 写pkg文件(就是.h中的public 部分)

2. tolua++ -o "LocalizationManagerLua.cpp" LocalizationManager.pkg 得到导入cpp文件

3. 在appdelegate.cpp中加入两句话

TOLUA_API int luaopen_BattleLayer (lua_State* tolua_S);

luaopen_BattleLayer(pStatck->getLuaState());


或者在toluaapi.h中这么写

#define LUA_CLASS_TABLE \
{ \
LUA_CLASS(CCHTMLLabel) \
}



你可能感兴趣的:(lua调用c++)