我有一个教程来开发我的第一个应用程序。我正在使用多平台软件。现在,下面的代码只在第一次工作,然后完成按钮消失。任何建议。当然,这发生在 iphone 模拟器中。
//flexible space for button bars
var flexSpace = Titanium.UI.createButton({
systemButton:Titanium.UI.iPhone.SystemButton.FLEXIBLE_SPACE
});
//done system button
var buttonDone = Titanium.UI.createButton({
systemButton:Titanium.UI.iPhone.SystemButton.DONE,
bottom: 0
});
//add the event listener 'click' event to our done button
buttonDone.addEventListener('click', function(e){
tfAmount.blur();
tfInterestRate.blur();
interestRate = tfInterestRate.value;
tfAmount.visible = true;
labelAmount.visible = true;
});