Я младший разработчик iOS и пытаюсь использовать MMDrawerController.
У меня есть MainStoryboard
с 4 видами.
- NavigationController (встроено в контроллер CenterViewController)
- CenterViewController
- LeftViewController
- AboutViewController
Я добавил кнопку на левом элементе навигации на CenterViewController
и нажмите на нее, чтобы открыть / закрыть боковое меню.
Но если я не хочу менять вид центра с помощью этого кода
ViewController *vc = [mainStoryboard instantiateViewControllerWithIdentifier:@"AboutViewController"];
if (vc)
[appDelegate.drawerController setCenterViewController:vc withCloseAnimation:YES completion:nil];
Он работает нормально, но у меня нет левой кнопки навигации.Почему?
Спасибо