从 uitabbarcontroller 中的选项卡栏项目显示 uiactionsheet
在我的一个应用程序中,我想从选项卡栏控制器中的选项卡栏项目显示操作表,并且如果我单击该选项卡栏项目,则应该可以在任何地方访问该操作表。我担心这是可以做到的,因为选项卡栏与其视图控制器紧密耦合。如果有人有任何解决办法,那将非常有帮助。
In one of my apps, I want to display an action sheet from a tab bar item in a tabbar controller and this action sheet should be accessible through out anywhere, if I click that tab bar item. I afraid this can be done, as the tab bar is tightly coupled with its view controllers. If anyone has any work around, it will be really helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
UIActionSheet 有一个名为 showFromTabbar 的方法:
UIActionSheet has a method called showFromTabbar:
如何创建 TabBarController 的parentView 控制器并从该viewController 呈现actionSheet。基本上,视图控制器除了 tabBarController 本身之外什么也不包含。
How about creating a parentView controller of TabBarController and present actionSheet from that viewController. Basically that View Controller holds nothing except tabBarController itself.
使用。
在标签栏控制器内的视图控制器中
Use,
in the view controller which is inside a tab bar controller.