Abhishek Vamja
Abhishek Vamja

Reputation: 1

How to Tabbar Show in Another Sidemenu item?

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

Answers (1)

Amit gupta
Amit gupta

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.

enter image description here

Upvotes: 1

Related Questions