aryaxt / iOS-Slide-Menu

iOS Slide Menu with ability to add both left and right menu, and built in gesture recognizer. Similar to Path and Facebook
Other
1.53k stars 359 forks source link

Push segue??? #143

Closed SadhuRus closed 9 years ago

SadhuRus commented 9 years ago

Why left menu not working after push-segue to another viewController?

aryaxt commented 9 years ago

How is it not working? Not showing?

SadhuRus commented 9 years ago

Yes. After push segue i try to swipe left/right but menu not showed =( P.S:I have navigation controller with many segues. I want to see the left menu anywhere

aryaxt commented 9 years ago

you need to implement the delegate in every controller that needs it to be visible

- (BOOL)slideNavigationControllerShouldDisplayLeftMenu
{
        return YES;
}
SadhuRus commented 9 years ago

After it "back button" change to "menu" icon. And i can't go back.

SadhuRus commented 9 years ago

All Work if i comment this: But it no best solution... /*

*/

aryaxt commented 9 years ago

Great, but if you comment that out, it'll always show the menu on every viewController pushed into the nav stack, if that's the expected behavior for you, great

SadhuRus commented 9 years ago

That's the expected behavior for me. Thank you