quick对cocosStudio图片控件的鼠标事件不能捕获“ended”吗

quick对cocosStudio控件的鼠标事件不能捕获“ended”,只能捕获"began"吗

//–代码如下,只有鼠标按下的时候有捕获,弹起没有捕获
local imgNode = rootNode:getChildByName(“bg”)
imgNode:setTouchEnabled(true)
imgNode:addNodeEventListener(cc.NODE_TOUCH_EVENT, function(event)
print(event.name)
end)

return true