How can I hide a navigation bar from first ViewController or a particular ViewController in swift?
I used the following code in viewDidLoad():
viewDidLoad()
private func setupView() { view.backgroundColor = .white navigationController?.setNavigationBarHidden(true, animated: false) }