我MMdrawercontroller
在我的 Objective-C 应用程序中使用左侧菜单。我在导航栏中有一个按钮来打开/关闭菜单。问题是菜单只打开而不关闭。这是我的代码:
- (IBAction)showMenu:(id)sender {
AppDelegate * app = (AppDelegate *) [[UIApplication sharedApplication] delegate];
[app.drawerController toggleDrawerSide:MMDrawerSideLeft animated:true completion:nil];
}
编辑: 打开菜单时永远不会调用 IBAction(即使在我调试时,没有覆盖我的 centerVC 的视图)