如何在按下 UITabbar 时获得展开弹出窗口
我不知道这是否是以前问过的,或者我是否正确地表达了这个问题。我在谷歌上也找不到任何信息。
我的问题是:当我按标签栏按钮?
I don't know if this is asked before or if I'm phrasing the question correctly. I can't find any information on google neither.
My question is: How do I get a sort of popup like this when I press a tabbarbutton?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AFAIK,sdk 中没有内置任何东西可以为您提供开箱即用的功能。所以你必须自己构建它。当用户点击选项卡栏时,可能会首先显示一个简单的视图,其中包含一些按钮。该视图的框架基于选择的选项卡栏按钮。当用户想做其他事情时,您需要检测内部(以选择一个项目)和外部(以关闭弹出窗口)的点击。
AFAIK, there is nothing built into the sdk that gives you this out-of-the-box. So you'll have to build it yourself. Maybe start by showing a simple view with some buttons in it when the user taps the tab bar. Base this view's frame on which tab bar button was chosen. You'll need to detect taps inside (to choose an item) and outside (to dismiss the pop-up) when the user wants to do something else.
我发现了一些关于
NSPopUpButton
的信息。我认为对此进行一些尝试应该可以解决问题。I found out something about
NSPopUpButton
. I think a bit of experimenting on that should do the trick.