我在使用Appcelerator绘画视图区域处理“Touchstart”事件时遇到了麻烦。它与我之前的Ti.Paint模块(版本1.1)完美配合,但是通过选择最新的模块版本,touchstart事件不会触发。如何使用最新模块版本的Ti.paint解决我的问题?
我的代码是:
main_view.addEventListener("touchstart", function(e) {
alert('You have started to touch in your pain view');
});