为什么在尝试检查Corona sdk时是否会出现此错误?

时间:2014-02-10 01:15:46

标签: android ios lua corona

if myGameSettings.HighScore > highScore.text then
end

我正在尝试检查这种情况是否属实,但我得到了这个错误 尝试将字符串与数字进行比较

我也试过像这样使用它

if tonumber(myGameSettings.HighScore) > tonumber(highScore.text) then
end

1 个答案:

答案 0 :(得分:1)

您使用的highScore.text可能是字符串值。