钛合金定制标签栏
这是我在 Titanium SDK 上的第三天。
如何从另一个 .js 文件在我的窗口中添加选项卡栏?我的意思是我已经在 createTabbar.js
中编写了选项卡栏的代码,并且我想添加到我的 firstView.js
中。
是否可以 ?正如我看到的许多例子,这些例子都在 app.js 文件中编写了选项卡条码,所以...
谢谢...
Its mine 3rd day on Titanium SDK.
How can I add tab bar in my window from another .js file ? I mean I have write the code of tab bar in createTabbar.js
and I want to add in my firstView.js
.
Is it possible ? As I have seen many examples those have written tab bar code in app.js file so...
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 Titanium.include 了解如何从其中包含 JavaScript文件到另一个。
See Titanium.include for how to include JavaScript from one file to another.
已解决:
我有 mainTab.js 来保存/返回选项卡栏。
mainTab.js :
现在在我的login.js文件中,我调用了mainTab.js,如下所示:
由于我是Titanium的新手,如果有更好的方法可以做到这一点,请建议我...
Solved :
I have mainTab.js that holds/returns tab bar.
mainTab.js :
Now in my login.js file I called mainTab.js like :
As I am new to Titanium, if there is some better approach to do the same, please suggest me...