LayerTouchPriority = -129 --弹窗层的优先级<大于最大优先级>
--设置弹窗层的优先级<handle,是否多点触摸,优先级,是否吞噬下层touch><began方法里必须返回true>
self:registerScriptTouchHandler(function(eventType) if eventType == "began" then
return true end end, false, LayerTouchPriority, true)
self:setTouchEnabled(true)
--再将按钮的优先级设置为大于弹窗层的优先级
--btnClose:setTouchPriority(LayerTouchPriority - 1)