1

如何将整个显示屏注册为事件侦听器?

4

2 回答 2

3

创建 main.lua 并添加它。

function drawLine( event )
  if(event.phase == "ended") then
    line = display.newLine(event.xStart, event.yStart, event.x, event.y)
    line:setColor(255,0,0)
    line.width = 5
  end
end
Runtime:addEventListener("touch", drawLine)

当然,请务必查看此网站http://developer.anscamobile.com/resources/docs

于 2011-03-21T15:20:26.147 回答
0

将事件侦听器添加到运行时

于 2011-04-06T15:41:30.100 回答