如何在 Titanium Mobile 中处理 tabGroups 中的子内容

发布于 2024-10-30 06:36:32 字数 180 浏览 1 评论 0原文

处理 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听风念你 2024-11-06 06:36:32

您可以在当前选项卡上打开新窗口:

tab.open(newWindow);

这将使用标准的 iOS 导航过渡动画。

此外,您还可以配置窗口的导航栏(顶部栏),而无需使用标题、leftNavButton、rightNavButton 等窗口属性创建和添加工具栏。例如,创建一个编辑按钮,然后执行以下操作:

newWindow.rightNavButton = editButton;

此外,您还可以通过将 systemButton 属性设置为 Ti.UI.iPhone.SystemButton.EDIT 来创建标准编辑按钮。

最后,要创建具有任意标题的系统按钮,请设置 title 属性并将 style 属性设置为 Ti.UI.iPhone.SystemButtonStyle.BORDERED

You can open the new window on the current tab:

tab.open(newWindow);

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:

newWindow.rightNavButton = editButton;

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文