窗口转换
我正在使用 Appcelerator 开发一个 iOS 应用程序,我有一个简单的问题。 如何选择打开新窗口时的过渡动画?我不 想要使用默认的向右滑动。
这是我使用的代码(单一上下文)。
tab['tab1'].open(Window.Contacts());
这在某种程度上有效,但我希望它在当前选项卡中打开。
Window.ContactsAvatars().open({transition:Titanium.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT});
感谢所有的投入!
I am developing an iOS app using Appcelerator and I got a quick question.
How can I choose the transition animation when opening a new window? I do not
want to use the default slide to right.
This is my code that I use (single context).
tab['tab1'].open(Window.Contacts());
This works in a way, but I would like it to open in the current tab.
Window.ContactsAvatars().open({transition:Titanium.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT});
Thankful for all input!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的选项卡组的名称是
tab
。则要强制将过渡样式设置为
tab.open({transition:Titanium.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT})
然后,如果它不起作用, ,然后在调用时尝试使用以下代码片段显示窗口:
I suppose that your tabs group's name is
tab
.Then, to force your transition style to the
tab.open({transition:Titanium.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT})
if it doesn't work, then try with the following snippet while calling the window to display :