Reputation: 1
Why my Tabbar Show in Another Sidemenu item, here is my code
let navigate = storyboard?.instantiateViewController(withIdentifier: "ViewController") as! ViewController
navigationController?.pushViewController(navigate, animated: true)
Upvotes: 0
Views: 59
Reputation: 553
For achieving this you have to add navigation controller before making root view controller from tabbar like shown in image. Then it will shown to your another controller.
Upvotes: 1