这里我遇到了一个小问题,我使用的是钛加速器提供的 Ti.paint 模块。问题是我可以在某个事件侦听器上拥有所有 x 和 y 像素坐标吗?我用过这个
var paintView = Paint.createPaintView({
top : 0,
right : 0,
bottom : 80,
left : 0,
strokeColor : '#0f0',
strokeAlpha : 255,
strokeWidth : 10,
eraseMode : false
});
paintView.addEventListener('touchmove', function(e) {
Ti.API.info('listener called ' + e.x + ',' + e.y);
});
但它不会捕获所有 X、Y 坐标,它会跳过其中一些坐标。缓慢绘制将捕获几乎所有彩色像素坐标,但绘制速度很快,会跳过一些坐标坐标。请对此提供帮助。
阿里