使用 Tabbar 管理 PushViewController

Posted

技术标签:

【中文标题】使用 Tabbar 管理 PushViewController【英文标题】:Manage the PushViewController With Tabbar 【发布时间】:2019-03-17 07:13:39 【问题描述】:

我在SecondViewController 中嵌入了 TabBar 我有一个表格视图,我想用Didselect 推送ViewController 并用导航返回按钮返回secondViewController

故事板设置

【问题讨论】:

【参考方案1】:

您可以使用情节提要中的唯一标识符为您想要的每个转换创建导航控制器的转场。

然后你可以在didSelectperformSegue 中手动调用转换:

self.performSegue(withIdentifier: "Identifier", sender: self)

而且由于您将视图嵌入到导航控制器中,您不需要处理后退按钮,它会自动处理。

您还可以通过覆盖perepareForSegue 来设置下一个视图控制器属性:

override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) 
    if (segue.identifier == "Identifier") 
       let destination = segue.destination as! YourViewController
       // pass data to next view
    

【讨论】:

以上是关于使用 Tabbar 管理 PushViewController的主要内容,如果未能解决你的问题,请参考以下文章

TabBar控制器

iOS开发简记:自定义tabbar

带有 TabBar 的 TableView 使用函数在没有新 ViewControllers 的情况下重新加载表格

如何修改tabBar的高度

使用tabBar跳转页面并隐藏tabBar

小程序自定义tabbar闪动问题