Ti.Platform.openUrl或Ti.App.fireEvent的回调或完成事件

时间:2013-01-21 18:15:06

标签: events callback titanium

有没有人知道如何确切地找出Ti.Platform.openUrl或Ti.App.fireEvent何时完成?像回调或完成事件?感谢。

1 个答案:

答案 0 :(得分:0)

应用级活动全球适用于您的应用。它们可在所有上下文,功能范围,CommonJS模块等中访问。您可以通过Ti.App模块触发它们并按如下方式监听它们。

//Creating an app level custom event
Ti.App.addEventListener('myAppEvent', myCallBack);

//Fire the event like
Ti.App.fireEvent('myAppEvent');

//Callback function of your custom event
function myCallBack(e){
    alert("In call back. App level event get fired!!!");
}

请参阅Titanium中的Event handling了解更多详情