ボタンをクリックしてアプリケーションを終了しようとすると、チタンのスプラッシュ画面が再び表示されます!!
次のコードを使用しています
var win=Ti.UI.createWindow({
backgroundColor:'#ddd',
exitOnClose:true
});
var button=Ti.UI.createButton({
title:'back',
left:10,top:10
});
button.addEventListener('click',function(e){
win.close();
});
var text=Ti.UI.createLabel({
text:'Home page',
color:'#000',
font:{ fontSize:20}
});
win.add(button);
win.add(text);
win.open();
ボタンをクリックしてアプリケーションを終了するにはどうすればよいですか?