Вам нужно представить свой ВК с UINavigationController
или вставить новый ВК на текущий navigationController
.
Первый подход, подталкивающий mainVC к текущему navigationController
(вероятно, будет работать лучше в вашем случае):
@IBAction func buttonPressed(_ sender: Any) {
let storyborad = UIStoryboard(name: "Main", bundle: nil)
let mainVC = storyborad.instantiateViewController(withIdentifier: "mainVC") as! ViewController
self.navigationController?.pushViewController(mainVC, animated: true)
}
Второй подход, с инициализацией навигационного контроллера:
@IBAction func buttonPressed(_ sender: Any) {
let storyborad = UIStoryboard(name: "Main", bundle: nil)
let mainVC = storyborad.instantiateViewController(withIdentifier: "mainVC") as! ViewController
self.present(UINavigationController(rootViewController: mainVC), animated: true, completion: nil)
}