You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here i am having navigation and search bar in home page i.e front view controller and from here while navigating from home page to search page working fine and when i come back from search page to home page the navigation bar was missing please help me how to resolve this ?
Here is my image link shown below https://ibb.co/eMeCPd
I used below code
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let abcViewController = storyboard.instantiateViewController(withIdentifier: "filterPage") as! filterPageViewController
self.navigationController?.pushViewController(abcViewController, animated: true)
later i tried with this
let tbc = self.revealViewController().frontViewController as? UITabBarController
let nc = tbc?.selectedViewController as? UINavigationController
nc?.pushViewController(abcViewController, animated: true)
The text was updated successfully, but these errors were encountered:
Here i am having navigation and search bar in home page i.e front view controller and from here while navigating from home page to search page working fine and when i come back from search page to home page the navigation bar was missing please help me how to resolve this ?
Here is my image link shown below
https://ibb.co/eMeCPd
I used below code
later i tried with this
The text was updated successfully, but these errors were encountered: