代码如下:
···
{
["type"] = "RadioGroup",--input3
["list"] = "是,否",
["select"] = "1",
},
{
["type"] = "Label",
["text"] = "是否自动解锁英雄(仅支持6P和iPad Mini2+)",
["size"] = 20,
["align"] = "center",
["color"] = "74,169,170",
},
---------------------------------------------
local MyJsonString = json.encode(MyTable);
ret, input1, input2 = showUI(MyJsonString);
if ret == 0 then--如果选择取消,脚本退出
lua_exit()
mSleep(0)
mSleep(0)
end
-------------------------------------------
if input3 == "0" then--自动升级最下面的英雄
nLog("升级")
mup = 0
elseif input3 == "1" then
nLog("不升级")
mup = 1
end
···
input3的赋值没有起作用,是为什么呢?
因为第二段代码里面ret, input1, input2 = showUI(MyJsonString); 没有把input3。