答案 0 :(得分:6)
您必须使用另一个NavigationController包装您的articleVC。 或者不使用segue,您可以使用导航控制器推送它以重复使用NavigationBar。
let yourArticleViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "articleViewControllerIdentifier") as! ArticleViewController
self.navigationController?.pushViewController(yourArticleViewController, animated: true)
答案 1 :(得分:0)
ArticlesVC应嵌入其自己的导航控制器中。这应该可以解决您的问题。
iOS Swift - View Controller - Embedded Navigation Controller