这是我的代码,我疯了。我刚刚在Corona Labs的例子中做过,但似乎没有用。你能看一下吗?
local try= display.newImage("1.png")
local function hop(event)
if(event.phase==began) then
print "hello"
end
return true
end
try:addEventListener("touch", hop)
答案 0 :(得分:3)
你真的很接近,一个小错误 - 你需要引用“开始”。
if event.phase == "began" then
那就行了。