Menu
  • HOME
  • TAGS

How to add right side Slide Menu iOS

ios,objective-c,amslidemenu,mfslidemenu

You have already did it for the left side, I am not sure what's the issue u are facing to implement the same for the right side. Simple put another button in the BangladeshViewController and add its action to the rightRevealToggle: and also add a new controller for the right...

Unable to pass url string when segue perform using AMSlideMenu?

ios,objective-c,segue,uistoryboardsegue,amslidemenu

I got over the problem by using NSUserDefaults temporarily but still it not a proper solution. Still looking for a proper method to pass parameters b/w classes.

Xcode AMSlideMenu Opening Left menu only with a button, disabling swipe

ios,objective-c,xcode5,amslidemenu

If you've read the documentation in the link, you could notice they stated that you have to import "UIViewController+AMSlideMenu.h" on your pushed view controller and then call [self disableSlidePanGestureForLeftMenu]; on your viewDidLoad method (or wherever you want). I've tried it with the example they've provided and it works. ...

Slide-Out Navigation Panel in ios from scratch

ios,objective-c,amslidemenu,mfslidemenu

you can use MMDrawcontroller and Pass LeftView, RightView and Centerview with Navigationcontroller. All three controllers are UIViewController. You can also add Left and Right View with NavigationController same as CenterView so you can push from left and right view. CenterVC *objCenter = [[CenterVC alloc] initWithNibName:@"CenterVC" bundle:nil]; LeftVC *objleftVC = [[LeftVC...