Tagged Questions
A view controller container for iOS that presents its child view controllers in two layers. It provides functionality for sliding the top view to reveal the views underneath it.
1
vote
1answer
95 views
+50
How can I make a navigation controller load its root view controller when it is loaded offscreen?
I use ECSlidingViewController for a side-drawer effect in my application. When my initial view loads, there is a hidden view controller with an MKMapView behind the visible view. Needing to segue from ...
0
votes
1answer
31 views
ECSlidingViewController disabling swipe to delete in UITableView
I'm using this source code for adding a sliding menu similar to the Facebook App:
Git Hub Project ECSlidingViewController: https://github.com/edgecase/ECSlidingViewController
Here is the code for my ...
1
vote
0answers
27 views
ECSlidingViewController cause to mistake when dismiss UIViewController
When I use ECSlidingviewController dismissing to last of controller return to top controller instead of parent;
My Controllers order like this in storyboard ;
InitialViewController ...
1
vote
0answers
17 views
How to make underLeft view scrollable on ECSlidingViewController
I am using ECSlidingViewController in my Application.
My main menu viewController is underLeft on ECSlidingViewController, which is UItableView with UINavationController, is it possible make it ...
1
vote
1answer
54 views
Slide menu as facebook app
I have found a code that slide de view and put a ViewController but I don't wanna put a ViewController, the view which I need to add to slide menu is in the same viewcontroller. I need only add this ...
0
votes
1answer
66 views
Using my NavigationController with my ECSlidingViewController
What I'm trying to do
If started creating my App. I've got a NavigationController as my rootViewController. When the app is started it will open my LoginViewController. In there I do the ...
0
votes
1answer
48 views
Error with ECSlidingViewController
I have been working with ECSlidingViewController for a while and never had this problem before. I am getting the following error on swiping the view to see the Menu. Anyone faced this problem before?
...
0
votes
1answer
55 views
ECSlidingViewController: Can't hide menu
I have implemented the ECSlidingViewController framework to my project. That works. I can switch between my Viewcontrollers with the left side menu.
But now I want to set the current view / top view ...
-1
votes
1answer
54 views
Remove Gesture for view while Sliding Menu Activated
i'm using ECSlidingViewController and i've a problem when using pan Gesture to open the sliding menu the tableview in the main view still have the scrolling gesture
i need to remove the gesture of ...
0
votes
1answer
57 views
ECSlidingViewController disables tabbar item touch
I'm using the ECSlidingViewController in my application that uses a tab controller. to make a long story short, ECSlidingViewController disables the tab bar functionality of popping back to the ...
0
votes
1answer
128 views
iOS Adding Menu Causes Crash When Not First View
I am using a storyboard to switch between views. Pretty simple, until I try to add ECSlidingViewController.
If I add the above slide menu to the first view I call using this:
self.topViewController ...
0
votes
0answers
56 views
Multiple ECSlidingViewController Menus, and switching between them
I am using ECSlidingViewController to create a side menu. Now I could simply pass variables to the menu to let it know what menu it should load, but I'd like to be able to have two (or more) separate ...
0
votes
0answers
67 views
Crashing on ECSlidingViewController
I have a little problem with my app.
I am using ECSlidingViewController.
Here's a overview:
On the ViewController.h:
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
#import ...
0
votes
2answers
133 views
Should I reuse a navigation and table view controller for different data sources?
I am using ECSlidingViewController, a library that gives a side-drawer effect. My application opens to a (navigation controller holding a) table view controller of 'Nearby' results, and the cells ...
0
votes
1answer
50 views
Loaded the nib but didn't get a UITableView Exception
I'm trying to load a uitableview using ECSlidingViewController methods.
When I call this code:
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone"
...