cocostudio的 ScrollView 怎么监听滚动
1个回答
推荐于2018-04-05 · 知道合伙人软件行家
关注
展开全部
代码如下:
local function onTouch(events)
if events.name == "began" then
return true
elseif events.name == "moved" then
elseif events.name == "cancelled" then
elseif events.name == "ended" then
end
end
local touchLayer = display.newLayer()
self:addChild(touchLayer)
touchLayer:addNodeEventListener(cc.NODE_TOUCH_EVENT, onTouch)
touchLayer:setTouchEnabled(true)
touchLayer:setTouchMode(cc.TOUCH_MODE_ONE_BY_ONE)
touchLayer:setTouchSwallowEnabled(false)
在Scroll View的上一层加一个Layer响应touch事件。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询