打开标签页时
Ti.Ui.Tab.open(win);
我想做点工作。我试过这样的
tabcomponent.open = function(win){
// Code goes here
};
但是没有工作。任何人都可以让我知道如何覆盖方法。
提前致谢,
Swathi。
答案 0 :(得分:3)
您无法覆盖默认功能。使用与默认函数名称不同的自定义函数扩展tab组件。
tabcomponent.openTab = function(win){
// Code goes here
};