Questions tagged [mfslidemenu]

24 questions
5
votes
3 answers

How to add right side Slide Menu iOS

I want to make a Slide Menu (both right & left side) in Storyboard. Here the left Side Menu panel is a viewController and an UITableView with customCell embedded in it to perform the menu style. I have followed a youtube "tutorial" and the left side…
Tulon
  • 4,011
  • 6
  • 36
  • 56
3
votes
7 answers

MFSideMenu how to load in another ViewController

My App is based in a LoginView and SecondView. I will show SecondView after login. I don't want to make MFSideMenu on LoginView. I would like to use MFSideMenu just in the SecondView. I am trying to do it in my AppDelegate.m: -…
2
votes
2 answers

Slide-Out Navigation Panel in ios from scratch

I want to build a Slide out Navigation panel for both side (left & right) with segue. Some of the things i have to follow in this case. The left & right side menu table must be in UIViewController (not in UITableViewController) & all of the…
Tulon
  • 4,011
  • 6
  • 36
  • 56
2
votes
0 answers

gestureRecognizer:shouldReceiveTouch:]: unrecognized selector sent to instance

I know the meaning of unrecognized selector issue. It is always due to calling a method which is not implemented or not found. I have the selector implemented and I can see it as well. Still I am getting this error. I am using MFSlideMenu control.…
iBug
  • 2,334
  • 3
  • 32
  • 65
1
vote
0 answers

MFSideMenuPanModeDefault gives me nil value error in swift

I'm using MFSideMenu with swift. when I use following in viewWillAppear, menuContainerViewController.panMode = MFSideMenuPanModeDefault it says unexpectedly found nil while unwrapping an Optional value and app crashes. What can be the reason for…
Jobs
  • 269
  • 2
  • 6
  • 21
1
vote
0 answers

Reload UITableview data within MFSideMenuViewController from another viewcontroller

I have use MFSideMenu but I am new with that. I have a UITableview in MFSideMenuViewController. Data in that tableview depend on the web service response. When application start (AppDelegate) that MFSideMenu is set and related web service is called.…
Er. Vihar
  • 1,495
  • 1
  • 15
  • 29
1
vote
1 answer

how to go back in MFsidemenu?

i want to back on MFSlidemenu there is no functionality to go back in MFSlidemenu i have tried this but result: [self.navigationController popToViewController:Viewcontroller animated:YES]; and this NSUInteger ownIndex =…
user6821982
1
vote
5 answers

postNotificationName is not yet trigger in appdelegate class

In Appdelegate.m added postNotification method - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { if(application.applicationState == UIApplicationStateBackground)…
1
vote
0 answers

Error: "unrecognized selector sent to instance" of MFSideMenuContainerViewController

This is my code: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds]; self.window.backgroundColor =…
J.Ming
  • 11
  • 3
1
vote
0 answers

Tab Bar disappears in MFSideMenu

I have a tab bar with 5 tabs and associated views added in storyboard. The first page seen in app is the view associated with first tab. In each of the five tab views , I have a menu button which gives a side menu which I implemented using…
Vamshi Krishna
  • 979
  • 9
  • 19
1
vote
1 answer

Unable to load new URL to UIWebView from another controller

I am new to iOS and I'm trying to make an webview-based app with sidebar drawer and simple navigation (I'm using MFSideMenu library). I'm able to load URL with my webview: ViewController.h #import @interface ViewController :…
Kirk Hammett
  • 656
  • 8
  • 24
1
vote
1 answer

MFSideMenu Landscape Mode issue

my app is using MFSideMenu script to push a view from right and i have set it to auto open the left menu if the app is opened in landscape mode , the problem is whenever i try to open app in landscape mode it shows black screen and i have noticed…
0
votes
1 answer

How to set View Controller of MFSlideviewcontroller using storyBoard?

I am using MfSlideviewcontroller, i have to add some labels using storyboard but when i am using story board the viewcontroller will be blank. And when i am doing with the help of code it is showing but i dont know the autolayout using code. can…
user6438311
  • 117
  • 1
  • 3
  • 13
0
votes
1 answer

How to add BackButton Facility MFSlidemenu?

I have implemented MFSideMenu in my project .It works great, but now i want to implement back button facility to every view. I try this but not working: NSArray *array = [self.navigationController viewControllers]; [self.navigationController…
seggy
  • 1,176
  • 2
  • 18
  • 38
0
votes
2 answers

MFSideMenu is not working in iOS?

Hi i have followed this github page to add MFSideMenu and its showing following error. Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_MFSideMenuContainerViewController", referenced from: objc-class-ref in AppDelegate.o ld:…
Bangalore
  • 1,572
  • 4
  • 20
  • 50
1
2