我无法使自定义事件正常工作,而是获得了unrecognized selector
。这种类型的代码以前一直在运行,但它最近停止了工作:
setTimeout(function() {
Ti.App.fireEvent('clearHistoryTable');
}, 3000);
Ti.App.addEventListener('clearHistoryTable',function(e) {
alert('a');
});
答案 0 :(得分:1)
我不确定为什么这对你不起作用,但请阅读本文,以便更有效地处理这类事件...... http://www.tidev.io/2014/09/10/the-case-against-ti-app-fireevent-2/