我对 Corona SDK 有疑问。我希望我的 newRect 与 newTextField 控件重叠。我的代码:
local localGroup = display.newGroup()
local txtOne = display.newTextField( display.contentWidth/2 - 140, 260, 280, 60)
local txtTwo= display.newTextField( display.contentWidth/2 - 140, 360, 280, 60)
local rect= display.newRect( display.contentWidth/2 - 140, 160, 200, 360)
localGroup:insert(txtOne)
localGroup:insert(txtTwo)
localGroup:insert(rect)
结果我有: txtOne 和 txtTwo 总是与我的 rect 对象重叠。但我希望 rect 对象位于 txtOne 和 txtTwo 之上。有没有办法做到这一点?