Questions tagged [ecslidingviewcontroller]

ECSlidingViewController is a view controller container that manages a layered interface. The top layer anchors to the left or right side of the container while revealing the layer underneath it. This is most commonly known as the “Side Menu”, “Slide Out”, “Hamburger Menu/Drawer/Sidebar”, etc…

Open source Side Menu for iOS (). Available on GitHub.

  • Panning gesture to move top view can be set on any UIView (). It is most likely a navigation bar or the whole top view itself.
  • Configurable anchor positions, with automatic adjustments for orientation change.
  • There are no assumptions about the size and layout of the views under the top view. See the underLeftWidthLayout and underRightWidthLayout properties if you need a common layout.
  • The child views can be changed at anytime.
  • Child view controllers can be an instance of UIViewController () or any subclass of UIViewController including UINavigationController () and UITabBarController ().
  • iPad () support.
163 questions
0
votes
0 answers

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 menus that will be associated with different…
Marcel Marino
  • 962
  • 3
  • 17
  • 34
0
votes
1 answer

Crashing on ECSlidingViewController

I have a little problem with my app. I am using ECSlidingViewController. Here's a overview: On the ViewController.h: #import #import #import "ECSlidingViewController.h" #import…
0
votes
2 answers

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 segue to a scroll view controller. The hidden left…
user
  • 3,388
  • 7
  • 33
  • 67
0
votes
1 answer

ECSlidingViewController How to go from one TopViewController to another TopViewController using animation in iOS

I am using ECSlidingViewController in my app for Facebook style swipe effect. I have 2 TopViewControllers, one left and one right side view controller and one initviewcontroller which is a slidingviewcontroller subclass. 1.…
Suhit Patil
  • 11,748
  • 3
  • 50
  • 60
0
votes
2 answers

Authentication ios 6 objective c

I am working on iOS 6, ARC,storyboards enable iphone app. I am trying to figure out log out functionality and what should happen when user wants to log out. I have a menu like Facebook and a log out option with in the menu. To mimic the menu I am…
Harish
  • 1,469
  • 16
  • 43
0
votes
1 answer

Passing Data from Slide menu to UITableViewController through UINavigationViewController

How can I pass data from UINavigationController to The root UITableViewController? I have implemented the ECSlidingViewController (https://github.com/edgecase/ECSlidingViewController). User selects one of the cells in the menu that correspond to…
0
votes
1 answer

How to pass NSManagedObject into ECSliding

I don't know if anyone has asked this question or perhaps I have overlooked. Please accept my apologies. I have a LoginViewController in front of InitialSlidingView. How can I pass NSManagedObjectContext into InitialSlidingView and subsequently to…
Adrian Hoe
  • 2,081
  • 2
  • 12
  • 12
0
votes
1 answer

ECSlidingViewController object cannot be nil

I am using ECSlidingViewController, I use the initialSlidingViewController to check if the user is authenticated, nothing complicated but it doesn't work, please help. #import "Landing2ViewController.h" #import "Home2ViewController.h" #import…
user714142
  • 57
  • 5
0
votes
1 answer

Integrating ECSLidingViewController for my UITaBBarController app

Am stuck up in implementing facebook slide menu kind of view using ECSlidingViewController source code [https://github.com/edgecase/ECSlidingViewController] for my requirement. My need is: I have a loginScreen and then next is a UITabBarController…
0
votes
1 answer

Activate Pan Gesture on MenuController using ECSlidingViewController

I'm currently using ECSlidingViewController in my app. As default behaviour, it's possible to show the side menu (MenuViewController or underRightViewController) panning on the top view or calling the RevealMenu: method. I extended this…
Claus
  • 5,662
  • 10
  • 77
  • 118
0
votes
1 answer

ECSlidingViewController Callback when sliding back to main view controller?

ECSlidingViewController inherits functionality from UINavigationController and I am currently trying to use - (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController…
jab
  • 5,673
  • 9
  • 53
  • 84
0
votes
1 answer

Using ECSlidingViewController framework, how can I add a navigationcontroller to MenuViewController for a child tableview

I'm using ECSlidingViewController framework, I need to implement a table that is child of MenuViewController. when I select a row I have to go to another tableview using a navigation controller, how can I configure this? thanks
swifferina
  • 293
  • 4
  • 16
0
votes
1 answer

ECSlidingViewController animation to achieve bouncing effect

I can't find an example of resetTopViewWithAnimations being used anywhere. The sample app doesn't use animations, and every forum I've seen doesn't mention how to actually implement animations using this method. Can someone explain how I would…
davis
  • 1,911
  • 6
  • 26
  • 50
0
votes
1 answer

ECSlidingViewController swipe gesture issue on View Controller

I'm using ECSlidingViewController for my app for the slide out menu and having a imageview on my all view controllers. It works perfectly but when i to the right when the menu controller(Slide view) is open the imageview with all the uiview items…
0
votes
1 answer

ECSliding, calling topViewController warning

I'm using ECSliding and I have this problem! In my project there are this files: FirstViewController(UIViewController) (topViewController) LefViewController(UIViewController) (underLeftController) I do this in my LeftViewController because I need…
Tortuga
  • 97
  • 3
  • 10
1 2 3
10
11