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
{{ message }}
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
I tried to push side menu controller using below code, controller is pushed but no navigation bar of side menu controller, Here app is showing main navigation bar with previous controller tile on back button.
Note: In my app SideMenu Controller is not initial controller.
Here "MYSideMenuViewController" is subclass of SideMenuController. SideMenuViewController is subclass of UIViewController act as a right side menu in my case.
EvaluationViewController is subclass of UIViewController and act as center view.
let sideMenuController = MYSideMenuViewController()
let sideMenuVC = SideMenuViewController.instantiate()
let evaluationViewController = EvaluationViewController.instantiate()
let navigationVC = UINavigationController(rootViewController: evaluationViewController)
sideMenuController.embed(sideViewController: sideMenuVC)
sideMenuController.embed(centerViewController: navigationVC)
navigationController?.pushViewController(sideMenuController, animated: true)
Please help to fix this issue.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I tried to push side menu controller using below code, controller is pushed but no navigation bar of side menu controller, Here app is showing main navigation bar with previous controller tile on back button.
Note: In my app SideMenu Controller is not initial controller.
Here "MYSideMenuViewController" is subclass of SideMenuController. SideMenuViewController is subclass of UIViewController act as a right side menu in my case.
EvaluationViewController is subclass of UIViewController and act as center view.
Please help to fix this issue.
The text was updated successfully, but these errors were encountered: