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

How to fade the topviewcontoller while using ECSlidingController?

I am using the ECSlidingController in my project. But my project demands the fading of the top view controller while sliding. I too used https://github.com/aryaxt/iOS-Slide-Menu but in this only the under view controller fades instead i want the top…
User1075
  • 819
  • 15
  • 36
0
votes
1 answer

ECSlidingViewController : Keep underLeftViewController open

I am working on an app which uses ECSlidingViewController to implement a drawer menu. I need to keep the menu always open on the home screen but keep it hidden and only open it on swipe when I am on the other views. Does the lib allow that kind of…
Moumou
  • 1,513
  • 2
  • 18
  • 41
0
votes
0 answers

How to open side menu not open by button click?

I am using ECsliding controller for slide menu.swipe gestrure working good in my case but when click button nothing happened. My case is: After two screen, I wanted to show slide menu so i have set ECSlide like belowe in my second screen and so far…
karthikeyan
  • 3,821
  • 3
  • 22
  • 45
0
votes
1 answer

ECSlidingViewController: blur view controller when displaying left menu

I'm using ECSlidingViewController in my application to display left menu. Is there are any way to make main view controller 'darker' when it's moved and left menu is displayed? Thanks.
Andrey
  • 2,659
  • 4
  • 29
  • 54
0
votes
1 answer

Set the topViewController before loading ECSlidingViewController

I am following this tutorial to make a Sliding app. I have added the ECSlidingViewController in my project. I have performed only few steps from the tutorial then I have encountered the error. I have written nothing in code except the code from…
0
votes
1 answer

iOS 7 AutoLayout Constraints not working when superview resized (only on first resize)

Please go to the link below to see the problem in action https://i.stack.imgur.com/NpQpg.jpg You can see the constraint for the bottom view that should make the view's bottom align with the superview's bottom doesn't work. And for both the top and…
Adé
  • 475
  • 5
  • 15
0
votes
1 answer

Multiple swipe recognizer in different components of controller ios

I have an UIViewController with a default swipe recognizer to open/close the right side menu of my app(I am using ECSlidingViewController plug in). This swipe recognizer is set to the parent view of the controller. Here is part of the code to detect…
0
votes
1 answer

Disappearing accessoryInputView on menu open

I am using ECSlidingViewController in my project and I also have a messages view, in which I have an accessoryInputView to imitate the iOS Messages app. Now when I open my menu on this view, the accessoryInputView slides down and is nowhere to be…
vrwim
  • 13,020
  • 13
  • 63
  • 118
0
votes
1 answer

ECSlidingViewController with UIScrollView

I have setup the ECSlidingViewController as shown in the examples. It works without problems for standard viewControllers. But the main vc of the app has the following hierarchy: NavigationController UIView of ContentController this controller…
0
votes
3 answers

Adding and removing observer issue

I have a view controller "A" which is registered as an observer like this, -(void)viewWillAppear:(BOOL)animated { [[NSNotificationCenter defaultCenter] removeObserver:self name:@"localActionTaken" object:nil]; [[NSNotificationCenter…
0
votes
0 answers

UIImageView stops animating with ECSlidingViewController

I'm doing simple animation in topviewcontroller using UIImageView like this... animatedImageView = [[UIImageView alloc] init]; animatedImageView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin |…
0
votes
1 answer

ECSlidingViewController hides when device Orientation chages to Landscape

I am using ECSlidingViewController to reveal the side bar menu in my app. Its working fine but when the side bar appears on screen and i changed the orientation of device to landscape, the side bar automatically get hides without giving…
0
votes
1 answer

Sidebar menu with indicate navigationbar on iOS

I want to create sidebar menu with indicate UINavigationBar like below mention image. By using ECSlidingviewController library i have done side menu. But thing is i need to display Navigation Indicator when user slide on menu. How can i create? Any…
0
votes
1 answer

ECSlidingViewController shouldAllowUserInteractionsWhenAnchored is removed

I want to display same transition in ECSlidingViewController which is current git repository is not allow to slide as shouldAllowUserInteractionsWhenAnchored like transition and i want to display same transition which is previous library…
0
votes
1 answer

UIAutoresizingMasks works wrong in iPad ECSlidingViewController

I have a container view ECSlidingViewController. Every item in the container is a NavigationViewController --> UIViewController For example in one child view controller I have a UITableView with a UICollectionView in one static cell. I try to…
ShurupuS
  • 2,923
  • 2
  • 24
  • 44