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
0
votes
2 answers

How to POP a viewcontroller with custom back UIbutton?

I am using side drawer menu https://github.com/mutualmobile/MMDrawerController I cannot come to back with custom UIButton. - (IBAction)doBackAction:(id)sender { NSArray *viewControllers=self.navigationController.viewControllers; for…
karthikeyan
  • 3,821
  • 3
  • 22
  • 45
0
votes
0 answers

Passing Data using MMDrawerController to the center controller

I am using MMDrawerController to make an application in swift. within the application I have to pass data from the side drawers to the center drawers. I found this for how to pass info in Objective-C. MainViewController *mainViewController =…
A. Sudano
  • 21
  • 3
0
votes
1 answer

MMDrawerController with Login View as first view

I am using MMDrawerController Library. My application is in Objective C. It has a login screen as its first screen. Code for AppDelegate.m LoginViewController* loginView= [[LoginViewController alloc]initWithNibName:@"LoginViewController"]…
Maverik
  • 41
  • 1
  • 5
0
votes
0 answers

How to replace ActionBarDrawerToggle on right hand side in place of stackoverflow icon

How to replace ActionBarDrawerToggle on right hand side in place of stackoverflow icon? I have placed drawer layout from right to left button toolbar setDisplayHomeAsUpEnabled(true); is appearing on left hand side how to get it right: @Override…
Zaib Niaz
  • 11
  • 5
0
votes
0 answers

Creating multiple instances of MMDrawerController

I am wondering if this is possible? I am able to get one instance working, but would like to have another instance with a different cells. I have tried creating a new instance of MMDrawercontroller in my AppDelegate but when I call it nothing is…
bobdawg
  • 69
  • 1
  • 8
0
votes
0 answers

TableView with detailed view

I little confused with configuring detailed view with MMDrawerController and without navigation controller. I have TableView with custom cells inside ViewController. When users presses cell i want to show another ViewController with details about…
moonvader
  • 19,761
  • 18
  • 67
  • 116
0
votes
1 answer

Can it be non rootviewcontroller?

I'm implementing a drawer layout design in an app. But my app starts with a small screen with an animated logo (simple HTML5 animation), then a login screen (g+ and Facebook), then the main screen where I'm implementing the MMDrawerController. The…
LearningCharlito
  • 327
  • 1
  • 2
  • 20
0
votes
1 answer

Tab Bar Controller with Drawer in iOS

I am new in ios.I want to implement the tabbar and drawer in same application.For drawer i use MMDrawerController.My problem is that tabBar in view controller is not shown after implement the drawer.My storyboured image is: When i open the drawer…
Tushar
  • 59
  • 11
0
votes
1 answer

MMDrawerController Subclass in Swift

if you're using Swift + CocoaPods + use_frameworks! with the MMDrawerController opened source (ObjC) library you might have trouble subclassing MMDrawerController getting multiple warnings of "unused initializer" All you'll have to do is override…
RyanPliske
  • 391
  • 3
  • 7
0
votes
1 answer

MMDrawerController configure left menu

My Left menu displace center view. It looks worse than if Left Menu cover center view. explanation How i can configure it?
ios newbie
  • 57
  • 2
  • 9
0
votes
1 answer

iOS Left menu by button using MMDrawerController

I got some troubles making button for open/close leftside menu. I made a button, but I can not configure it correctly, because I can't recognize whether the left view is open. It can be opened by swipe(special MMDrawer method), so I can't use a…
ios newbie
  • 57
  • 2
  • 9
0
votes
1 answer

iOS 9 multitasking with MMDrawer causes unwanted shadow

I was working with MMDrawer and I saw that my sidebar view got fully shadowed or not shadowed at all when changing size of multitasking. Is there any way to accomplish this problem?
Mehdi Hosseinzadeh
  • 1,160
  • 11
  • 25
0
votes
1 answer

Automatically moving to parent view controller

I am using mmdrawercontroller in my app...when i select a tableviewcell from drawer, i push tableview A on my navigational controller and then on selection of tableviewcell from tableview A, i push tableview B on my navigational…
0
votes
0 answers

Setting Entry Points while Using MMDrawerController using swift2

I am Using MMDrawerController in my Project. I followed this http://swiftdeveloperblog.com/left-side-menu-navigation-drawer-example-with-swift/ to set the MMDrawerController within my App. I used the same code in the tutorial in AppDelegate.swift…
Joker
  • 830
  • 2
  • 14
  • 30
0
votes
1 answer

MMDrawerController with xib

I've searched but nothing, well someone has some ideia about how to do it? I will not use storyboards cause they are using sourcetree git and bitbucket and they prefer xib instead of storyboard to do the tasks always, well, I am trapped with xib,…