我正在显示在服务中创建的som通知。但是,当我点击通知时,我想打开一个特定的布局。我该怎么办?
这是我的通知:
var curNotif = Ti.App.iOS.scheduleLocalNotification({
alertBody : 'bg-service2: has been invoked ' + not + ' times. It is still registered and will run again when the app is transitioned to the background',
date : new Date(new Date().getTime() + 1000) // 1 second after pause
});
我的项目只有一个在app.js中创建的窗口。然后我用我的布局创建视图,并在同一个窗口中添加或删除它们。