0

我有一个教程来开发我的第一个应用程序。我正在使用多平台软件。现在,下面的代码只在第一次工作,然后完成按钮消失。任何建议。当然,这发生在 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;
});
4

1 回答 1

0

寻找解决方案

var toolview = Ti.UI.iOS.createToolbar({
    height : 40,
    width : '100%',
    left : 0,
    top : 0,
    items : [flexSpace, buttonDone],
    barColor : '#000000'
});
win.add(toolview);
于 2013-03-30T13:04:12.983 回答