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
1 answer

ECSlidingController 2 right menu icons missing

I have created my App with the awesome ECSildingViewController 2.0. but when i just found the UITableViewCell on the right menu cannot display the icons. it works great on the left menu. Please find the screenshot…
user1172579
  • 575
  • 1
  • 7
  • 22
0
votes
1 answer

iOS - Affect Class Without Reloading View Through ECSlidingViewController

I am using ECSlidingViewController, and I have a UIWebView in my class WebViewController. Without reloading the entire view, I'd like to load the URL into the UIWebView when I click on a cell in the MenuViewController.m class. This is what I have so…
Marcel Marino
  • 962
  • 3
  • 17
  • 34
0
votes
2 answers

Changing viewControllers with ECSlidingView

I have a view that contains a ECSlidingView: Bij clicking the '+' button, you enter another view, without the ECSlidingView: Now, I would like to return to the first view once a user clicks on the 'Voeg Toe' button in the second view. I have tried…
0
votes
0 answers

Adding sliding menu (left drawer) to my storyboard

So I was creating a app using TabBarController as my main means of navigation till now but to add more options and navigation options, I wish to add a Sliding Menu/Drawer with a button on Nav bar or by swipe gesture. I found quite a few libraries to…
vongolashu
  • 375
  • 3
  • 17
0
votes
3 answers

Programmatically changing view in ECSlidingViewController

I'm trying to programmatically change the selected menu item and the displayed topViewController. In other words, I'm trying to do the same one does to change the selected tab in UITabBarController: [self.tabBarController…
Tom Kraina
  • 3,569
  • 1
  • 38
  • 58
0
votes
2 answers

How to go back to current View Controller?

I am implementing ECSlidingViewController in my app. Everything works fine, when I hit the menu button (UIBar) the left menu slides. But pressing the menu button again does not bring back the current ViewController. It works in the sample app, but I…
0
votes
2 answers

iOS navigate back after login from slide menu

I am using ECSlidingViewController for creating "hamburger" menu for user with some options and one of them is login. I edited first example in archive with ECSlidingViewController and it's working and looking good. Now I just want to extend this to…
Libor Zapletal
  • 13,752
  • 20
  • 95
  • 182
0
votes
1 answer

How To Disable ECSlidingViewController pangesture when the width of the LeftMenuView is fully revealed?

I'm able to make the ECSlidingViewController implementations works fine already. But I'm getting a hard time how to solve this scenario. Okay, I have the MainViewController and a LeftMenuViewController, My MainViewController width is 320 and my…
0
votes
1 answer

ECSlidingViewController - adding UITableView and segue to another ViewController

I am trying to create push segue from view. Maybe image would be best for describing: I started from sample ECSlidingViewController project (BasicMenu) and I am trying to expand first ViewController (Home) to another ViewController. I get it and I…
0
votes
0 answers

Swipe to delete iOS7 doesn't work with sliding menu

I've found a problem with swipe to delete while using ECSlidingViewController. Before iOS7 i use this trick: #pragma mark - SwipeToDelete+SwipeMenu trick -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer…
imike
  • 5,515
  • 2
  • 37
  • 44
0
votes
1 answer

ECSlidingViewController landscape 768x768px

i use ECSlidingViewController within my iPad app. Everything works fine except in landscape mode. The touchable part of the screen is only almost 768x768px : When the app launches it is not possible to tap buttons in the green rectangle. Yet the…
lefakir
  • 3,983
  • 4
  • 27
  • 37
0
votes
0 answers

iOS ECSlidingViewController delegate EXC_BAD_ACCESS

I have a ECSSlidingViewController with a menu in the underLeftViewController that has a few different buttons that lead to different segues to display different UIViewControllers in the ECSSlidingViewController.topViewController. All the buttons on…
0
votes
1 answer

View frame height decrease and black bar appear

I am using ECSlidingMenu with my project and I need to change rootview manually so I use this code UINavigationController *transferView = [self.storyboard instantiateViewControllerWithIdentifier:@"Transfer"]; [self.slidingViewController…
Nut Tang
  • 66
  • 5
0
votes
1 answer

Implement swipe action from specific portion of Screen using "ECSlidingViewController"

I have ECSlidingViewController working perfectly but I want to implement it in such a way that when the user tries to swipe action is not carried out when the user tries to swipe from the header section. I only require the body portion of the app to…
Royston Yinkore
  • 561
  • 1
  • 8
  • 22
0
votes
1 answer

Smooth Animation to Slide

I followed that tutorial to implement the basic setup of the ECSLidingViewController: http://www.youtube.com/watch?v=tJJMyzdB9uI Now I want to change the transition of opening the leftView like the Default Example of the TransitionFun example. I…
Adrian
  • 524
  • 5
  • 21