Navigation Controller navigation bar ishidden not working iOS swift
Problem:
I had tried to hidden the navigation bar using the below code.But it's not hidden the navigation bar.
self.navigationController?.navigationBar.isHidden = true
I had tried to hidden the navigation bar using the below code.But it's not hidden the navigation bar.
self.navigationController?.navigationBar.isHidden = true
Solution:
The above code will never works.So try the below code it will works good.
self.navigationController?.isNavigationBarHidden = true
Great! This is the right answer.
ReplyDeleteself.navigationController?.navigationBar.isHidden = true will not work even you set it in viewWillAppear.