加速器。更改窗口内容
我正在 Appcelerator 中开发 iOS 应用程序。 我有四个标签。当用户单击特殊按钮或导航栏标题时,如何更改窗口的内容?
例如,如果 tab_1 设置为在 app.js 中打开 window_1.js,如何在单击按钮时在 tab_1 中打开 window_2.js?我不想使用视图,因为我希望窗口的内容位于单独的文件中。
感谢所有的投入!
I am developing an iOS app in Appcelerator.
I got four tabs. How can I change the content of the window when the user clicks a special button or navbar title?
For example if the tab_1 is set to open window_1.js in app.js how can I open window_2.js in tab_1 upon button click? I would prefer not to use views since I would like the content of the window to be in seperate files.
Thankful for all input!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
前几天,我在构建一个 Titanium 应用程序时遇到了类似的障碍。 Titanium.UI.TabGroup 有一个名为 activeTab 的属性,该属性非常有用。
当然,代码明显人手不足:),但它希望能够引导您走向正确的方向,以便您可以在应用程序中实现所需的行为!
activeTab.open() 的一个很酷的事情(恕我直言)是,在 iOS 上,“后退”按钮将自动放置在标题栏上,以便用户可以返回到上一个视图/内容。
I ran into a similar road block the other day with a Titanium app I'm building. The Titanium.UI.TabGroup has a property called activeTab that is very helpful.
Of course, the code is significantly short-handed :) but it hopefully will steer you in the right direction so that you can implement the desired behavior in your app!
One of the cool thing (IMHO) about activeTab.open() is that, on iOS, a 'back' button will automatically be placed on the title bar so that the user can go back to the previous view/content.