任何人都可以让我知道如何覆盖Tab open方法

时间:2017-04-06 06:19:40

标签: titanium appcelerator titanium-mobile appcelerator-titanium appcelerator-mobile

打开标签页时     Ti.Ui.Tab.open(win); 我想做点工作。我试过这样的    tabcomponent.open = function(win){ // Code goes here };

但是没有工作。任何人都可以让我知道如何覆盖方法。

提前致谢,

Swathi。

1 个答案:

答案 0 :(得分:3)

您无法覆盖默认功能。使用与默认函数名称不同的自定义函数扩展tab组件。

tabcomponent.openTab = function(win){
     // Code goes here
 };