离开导航控制器

时间:2015-12-24 23:02:35

标签: ios swift segue

我试图离开初始视图控制器,然后进入空白视图控制器。这很好,但这会使空白视图控制器也成为导航控制器的一部分,这不是我想要的。我想离开视图控制器。

在视图控制器中我尝试偏离,它弹出它自己,当我尝试在视图中的方法将出现目标视图控制器时,self.navigationController?.topViewController返回自己,但self.navigationController?.popViewControllerAnimated(animated)不起作用

enter image description here

2 个答案:

答案 0 :(得分:6)

如果你有navigationController

self.navigationController?.popViewControllerAnimated(false)

否则做

self.dismissViewControllerAnimated(false, completion: nil)

<强>更新

转到故事板,选择要导航到的ViewController并添加故事板ID。确保点击&#34;使用故事板ID&#34; enter image description here

转到要导航的课程并添加以下代码

let storyboard = UIStoryboard(name: "Main", bundle: nil)
// vc is the Storyboard ID that you added
// as! ... Add your ViewController class name that you want to navigate to
let controller = storyboard.instantiateViewControllerWithIdentifier("vc") as! ViewController
self.presentViewController(controller, animated: true, completion: { () -> Void in
})

在您要导航时使用的操作中添加此代码。

答案 1 :(得分:5)

我相信这可以在不必编写任何代码的情况下完成。要离开导航控制器,请执行以下步骤:

  1. 从视图控制器创建一个Segue,它具有一个导航控制器,因为它是视图控制器的根视图控制器,您想要转到下一个控制器(不在导航控制器内)
  2. 点击新的Seque
  3. 打开属性检查器
  4. 选择'种类' - &gt; '现在模态'
  5. 选择'现在' - &gt; '过度背景'
  6. enter image description here