mutualmobile / MMDrawerController

A lightweight, easy to use, Side Drawer Navigation Controller
MIT License
6.76k stars 1.38k forks source link

Top bar button disappear #519

Open kuzevanoff opened 5 years ago

kuzevanoff commented 5 years ago

After switch centerviewcontroller from leftViewController (didSelectedRowAtIndexPath method) with this code:

      ViewController *vc = [mainStoryboard instantiateViewControllerWithIdentifier:@"CenterViewController"];
                if (vc)
                    [appDelegate.drawerController setCenterViewController:vc withCloseAnimation:YES completion:nil];

                break;

There are no more top bar buttons (button to open/close sidebar)

Why?

Thanks