_onScrollBegan(){
log('开始滑动')
}
_onScrollEnded(){
log('结束滑动')
}
_onScrolling(){
log('正在滑动')
}
start () {
// [3]
this.node.on('scroll-began', this._onScrollBegan, this, true);
this.node.on('scroll-ended', this._onScrollEnded, this, true);
this.node.on('scrolling', this._onScrolling, this, true);
}
上述代码的脚本是挂在scrollview的节点上,运行,未触发任何效果,日志没有打印出
