ios - MMDrawer left side drawer not showing -


i using mmdrawer here. have used 2 navigation controllers. issue on menu click, drawer doesn't open. debugged , found methods called properly, still drawer doesn't show up.

here flow:

login view controller inside separate uinavigationcontroller , push other uiviewcontrollers in uinavigationcontroller.

the above uinavigationcontroller shown in modal pop segue. , dismiss entire uinavigationcontroller. screen shows has drawer doesn't open on menu click.

code:

    - (ibaction)btnmenu_click:(id)sender {     [appdel.drawercontroller toggledrawerside:mmdrawersideleft animated:yes completion:nil]; // doesn't open } 

when login uinavigationcontroller not used, works fine.

let me know getting wrong , how solve this?


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -