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
1
vote
0 answers

Can't get a RightViewController to work with MEDynamicTransition

I'm trying to modify the TransitionFun example that comes with ECSlidingViewController to include a RightViewController. I've basically added another ViewController, similar to the existing MenuViewController, that appears on a swipe to the left,…
Rob
  • 1,037
  • 1
  • 13
  • 20
1
vote
1 answer

Implement a slide-sidebar like Tinder.app

Does anyone can open Tinder.app? Well, the app implements a simple-but-slick animation effect when the user taps on the top-left menu icon button. The focal points of this animation are: Status bar fades out/in based on when the left menu sidebar…
Fred Collins
  • 5,004
  • 14
  • 62
  • 111
1
vote
0 answers

library not found for -lPods when i am using ECSliding Controller

I am facing the this kind of issue in ECSlidingContrtoller ld: library not found for -lPods clang: error: linker command failed with exit code 1 (use -v to see invocation)
MK_iOS
  • 388
  • 5
  • 13
1
vote
2 answers

ECSlidingViewController - How do you know when the menu has been shown?

I am integrating [ECSlidingViewController], which I found on github, in my app and I want to know if there is a property which tells me if the menu has been shown or not. I will be using this to control the functionality of the menu button, as a…
Rameez Hussain
  • 6,414
  • 10
  • 56
  • 85
1
vote
0 answers

ECSlidingViewController crash when showing modal view controller from a topViewController

XCode 5, iOS7 project, using Storyboard, but mostly to define the flow, no UI is created by it. I have this scenario (sorry for no screenshot, but the storyboard is actually pretty big): I've setup ECSlidingViewController as it should. It's initial…
1
vote
1 answer

Obj-C: Swipe to delete locking app

I'm having an issue with swipe to delete in UITableViews when using ECSlidingViewController. I have a very simple example here: https://github.com/RichardSimko/ECSlidingViewControllerTest The problem arises when you swipe to delete on the table…
Rick
  • 3,240
  • 2
  • 29
  • 53
1
vote
1 answer

Opening BasicMenu.xcodeproj fails on the new ECSlidingViewController 2

Is it possible to open the BasicMenu.xcodeproj on xcode on the new version of ECSlidingViewController without having to do it via Examples.xcworkspace? I am trying to just work through the BasicMenu example specifically and when I do I get this…
malkoty
  • 99
  • 9
1
vote
2 answers

Status bar overlapping when using ECSlidingViewController

I added the following code in the AppDelegate implementor function didFinishLaunchingWithOptions if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { [application setStatusBarStyle:UIStatusBarStyleLightContent]; …
malkoty
  • 99
  • 9
1
vote
1 answer

sliding topViewController left and right stops after tapping on menu view

I'm currently using ECSlidingViewController 2 in my iOS 7 app. I've successfully implemented the ECSlidingViewController 2, however i'm having a minor issue when I am sliding the topViewController. When I am run the project for the first time ,…
raju_kr
  • 143
  • 2
  • 11
1
vote
0 answers

ECSlidingViewController with Core Data

I've been struggling to get this to work. I can't seem to get both the slide menu and table view (with data) to work simultaneously. I can only get one or the other. This issue I believe resides in my AppDelegate. Here's the affected section. -…
1
vote
1 answer

ECSlidingViewController Pan Gesture

I am currently working on an iOS 7 app. I've successfully implemented the ECSlidingViewController, however i'm having a minor issue when dealing with a NavigationViewController. The pan gesture to reveal the menu works, however when I try to slide…
deleteme
  • 61
  • 1
  • 6
1
vote
2 answers

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 Custom UINavigation Controller: @implementation…
Cody Winton
  • 2,989
  • 5
  • 25
  • 48
1
vote
0 answers

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 scrollable? Thanks,
user965241
  • 33
  • 6
1
vote
1 answer

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 UIView in underleft slide. OBS.: I'm not using…
1
vote
1 answer

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? [UIImage imageWithUIView:]: unrecognized selector…
Harish
  • 1,469
  • 16
  • 43