当我尝试通过单击按钮退出应用程序时,我对钛非常陌生,它再次显示钛闪屏!
我正在使用以下代码
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();
如何通过单击按钮退出应用程序?