加速器。在单一上下文中打开模式窗口
我正在使用 Appcelerator Titanium Studio 和 SDK 1.7.2 开发 iOS 应用程序。 我正在以单一上下文的方式做事(比如tweetanium)。 我知道如何在窗口之间切换,但如何打开模式窗口?
这种方法可行,但我无法向导航栏添加按钮。它还 感觉一点都不对劲。
var wind = UI.Win({
title: 'Twitter',
modal: true
});
wind.open(Window.ShareTwitter());
感谢所有的投入!
I am developing an iOS app with Appcelerator Titanium Studio and SDK 1.7.2.
I am working in a single context way of doing things (like tweetanium).
I know how to switch between windows but how can I open a modal window?
This kind of works but I cannot add a button to the navBar. It also
does not feel right at all.
var wind = UI.Win({
title: 'Twitter',
modal: true
});
wind.open(Window.ShareTwitter());
Thankful for all input!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你像往常一样打开模式窗口,没有任何改变......
you open a modal window the way you always do, nothing has changed...