请帮助我找出代码中的问题。我正在定义一个函数
local function goOnLesson()
if date.hour==1 then
index=1
local subj=schToday[index]
local text = display.newRetinaText("А сейчас у тебя: "..subj, 0, 0, native.systemFont, 70)
text:setTextColor(128,64,0)
text:setReferencePoint(display.CenterReferencePoint)
localGroup:insert(text)
end
end
当我运行它时,一切都很好。
我重新组织了代码,不再需要 if 阻塞
local function goOnLesson()
index=1
local subj=schToday[index]
local text = display.newRetinaText("А сейчас у тебя: "..subj, 0, 0, native.systemFont, 70)
text:setTextColor(128,64,0)
text:setReferencePoint(display.CenterReferencePoint)
localGroup:insert(text)
end
我刚刚删除了 if-end 块,但现在它不起作用。请帮忙 :)