在Titanium中更改HTML5左导航按钮标题

时间:2016-07-18 13:11:38

标签: titanium appcelerator titanium-mobile appcelerator-mobile

我在我的HTML5应用程序中使用钛经典。我想更改左侧导航按钮,标题为"返回"标题"取消"。我尝试使用" leftNavButton"更新按钮。财产,但没有用。任何人都可以告诉我如何更改文本。

谢谢, Swathi。

1 个答案:

答案 0 :(得分:2)

您可以发布代码示例吗?

通常,您需要添加具有所需属性的Ti.UI.Button(以及事件处理程序),然后将其分配给Window.leftNavButton属性。

所以:

var button = Ti.UI.createButton({title:'Cancel'});

button.addEventListener('click', function(){
 // handle it here
});

// assuming you have the window in 'win' variable
win.leftNavButton = button;