Questions tagged [mmdrawercontroller]

a lightweight, easy to use, Side Drawer Navigation Controller

MMDrawerController, found at http://github.com/mutualmobile/MMDrawerController, is a side drawer navigation container view controller designed to support the growing number of applications that leverage the side drawer paradigm. This library is designed to exclusively support side drawer navigation in a light-weight, focused approach while exposing the ability to provide custom animations for presenting and dismissing the drawer.

90 questions
1
vote
0 answers

Using MMDrawer only in sub navigation view

I'm new to swift and iOS programming. Recently, I was exploring Drawer options and tried MMDrawer tutorial as explained in this link. I followed it step by step and it works great in a single view. ie, app loads to central view and I can swipe right…
dhruvvyas90
  • 1,135
  • 1
  • 15
  • 31
1
vote
0 answers

MMDrawer Swift 2 Redirect to MMDrawer How to set on Click

I want to redirect login view controller to mmdrawer controller in swift if I am making only mmdrawer it works well because the code is under Appdelegate is working perfect . var window: UIWindow? var centerContainer: MMDrawerController? func…
Vishal
  • 478
  • 1
  • 5
  • 16
1
vote
1 answer

set multiple MMCloseDrawerGestureMode gestures

I am using MMDrawerController and I wish to set multiple closing gestures, anyone know if this is possible? If so how do I accomplish this? Currently I am doing this: [destinationViewController…
Slee
  • 27,498
  • 52
  • 145
  • 243
1
vote
0 answers

Is it alright to have the ViewController holder as a property of the root VC?

For all intents and purposes, MMDrawerController basically acts like a UINavigationController, where it holds a ViewController as the root VC. Is it ok practice to hold the MMDrawerController in a variable in the root VC or should I store a…
1
vote
1 answer

MMDrawerController doesn't close if setNavigationBarHidden is true

I'm using MMDrawerController, which works fine everywhere except on the two views where I have self.navigationController?.navigationBarHidden = true. On these views I can open the slider, but I cannot close it, the button doesn't respond anymore.…
Kalianey
  • 2,738
  • 6
  • 25
  • 43
1
vote
2 answers

How to configure MMDrawerController properly

I am using MMDrawerController to create slide menu in my iOS app. Menu is working well but i have some troubles with it. My menu is ViewController with TableView with very light 4 custom cells. My app now have top bar - i don't know how can i turn…
moonvader
  • 19,761
  • 18
  • 67
  • 116
1
vote
2 answers

MMDrawerController can't close drawer

I'm trying to use MMDrawerController in my application, but I can't get the side drawer to close with gestures on the center view. I've used MMDrawerController somewhere else in my app with great success, but can't figure out why its not working in…
Randy Layman
  • 313
  • 3
  • 10
1
vote
1 answer

Shadows appear behind subviews when UIViewController.view is clear

I am using MMDrawerController. It is a control that allows center, left and right viewcontrollers. I want to have one background image showing while all three view controllers have a clear background. I have that in place, but the problem is that…
SirRupertIII
  • 12,324
  • 20
  • 72
  • 121
1
vote
1 answer

MMDrawerViewController set up

I'm trying to set up a pod called MMDrawerViewController which creates a sliding drawer. I have a navigation controller that has a few table view controllers in it's stack. I inserted this in the NavigationViewController.m file: -…
0
votes
1 answer

MMDrawerController where I need to add sidemen buttons?

I am junior iOS dev and trying to use MMDrawerController. I have MainStoryboard with 4 views. NavigationController (embed on CenterViewController controller) CenterViewController LeftViewController AboutViewController I've added button on…
Boris Kuzevanov
  • 1,232
  • 1
  • 12
  • 21
0
votes
2 answers

MMDrawerViewController objective-c push to navigation view controller

i am beginner iOS dev, I have my app with many controllers. After login on LoginViewController (LoginViewController has segue relation with NavigationViewController) I do init MMDrawerViewController with this code: -(void)initSidebarController{ …
Boris Kuzevanov
  • 1,232
  • 1
  • 12
  • 21
0
votes
1 answer

iOS MMDrawerController objective-c login view controller

I am begin to study iOS and I try to do left navigation with MMDrawerController my AppDelegate didFinishLaunchingWithOptions code is: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { …
Boris Kuzevanov
  • 1,232
  • 1
  • 12
  • 21
0
votes
1 answer

how to use tools:openDrawer = "bottom"

I want to open my Drawer at the bottom but i could not is there any one who could solve my issue???
0
votes
0 answers

Right side menu in a tab application with a login screen

I am creating a simple tab bar application and have implemented the side nav using MMDrawerController https://github.com/mutualmobile/MMDrawerController I have imported the relevant files into my project and have been following this tutorial:…
Nouman
  • 585
  • 1
  • 11
  • 24
0
votes
1 answer

How to send data from RightViewController to MainView Controller in Swift 4?

Hello, I am using MMDrawerController for right side menu. I have 2 ViewController First is HomeVC with Product Listing data in UICollectionView and there's 1 filter button. When i press that filter button I push to filter screen RightViewVC. Now…
Gorib Developer
  • 587
  • 2
  • 13
  • 27