如何在 Titanium Mobile 中处理 tabGroups 中的子内容
处理 tabGroup 的活动选项卡中的交替内容的指定方法是什么? 就我而言,我有一个顶部有一个工具栏的表格视图,当单击一行时,我想将该选项卡中的内容切换到具有不同(编辑)工具栏的新内容。
据我所知,在 KitchenSink 演示应用程序中,窗口刚刚被替换。这是要走的路吗?如何处理转换?
谢谢您的回答, 克里斯
What is the designated way to handle alternating content in the active tab of a tabGroup?
In my case I have a tableview with a toolbar on top, and when a row is clicked, I'd like to switch the content in that tab to a new content with a different (edit) toolbar.
In the KitchenSink demo app the window is just replaced as far as I can see. Is this the way to go? How are transitions handled?
Thank you for your answers,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在当前选项卡上打开新窗口:
这将使用标准的 iOS 导航过渡动画。
此外,您还可以配置窗口的导航栏(顶部栏),而无需使用标题、leftNavButton、rightNavButton 等窗口属性创建和添加工具栏。例如,创建一个编辑按钮,然后执行以下操作:
此外,您还可以通过将 systemButton 属性设置为
Ti.UI.iPhone.SystemButton.EDIT
来创建标准编辑按钮。最后,要创建具有任意标题的系统按钮,请设置 title 属性并将 style 属性设置为
Ti.UI.iPhone.SystemButtonStyle.BORDERED
。You can open the new window on the current tab:
This will use the standard iOS navigation transition animation.
Also, you can configure a window's navigation bar (top bar) without needing to create and add a toolbar using Window properties like title, leftNavButton, rightNavButton. For example, create an edit button and then do:
Also, you can create a standard edit button by setting the systemButton property to
Ti.UI.iPhone.SystemButton.EDIT
.Finally, to create a system button with any title, set title property and also set the style property to
Ti.UI.iPhone.SystemButtonStyle.BORDERED
.