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
2 answers

ECSlidingViewController with iAds

I'm using ECSlidingViewController with a left & right side menus. Trying to get iAds to display at the bottom of the whole app. My StoryBoard entry point is a ViewController that is a ECSlidingViewController subclass. The storyboard is set for…
JMWhittaker
  • 3,633
  • 3
  • 23
  • 30
0
votes
2 answers

this class is not key value coding-compliant for the key topViewControllerStoryboardId

I'm trying to rebuild the Basic Example and whenever I start my application I end up with following error message: Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this…
Alx
  • 6,275
  • 7
  • 32
  • 54
0
votes
2 answers

Can ECSlidingViewController2 been used with both a left and right bar button?

Does anyone know if ECSlidingViewController2 can be used with both a left and a right UIBarButtonItem at the same time? Each of the examples only show a single button used on the left of the navigation…
0
votes
1 answer

Supporting multiple iOS versions

I'm using a library called ECSlidingViewController in my app. However this lib has two different versions, one for iOS 7 and one for older versions. Since the different versions use the same method signatures but are defined in different files,…
Rick
  • 3,240
  • 2
  • 29
  • 53
0
votes
1 answer

Transition between two NavigationControllers with ECSlidingViewController

I am trying to accomplish something like this: My Setup is this: I have a Storyboard Setup with the SlidingViewController as the RootViewController. The Left Panel is acting as the Navigation Menu. From this Menu, I have Segues to different…
0
votes
1 answer

ECSlidingViewController freezes UIRefreshControl

I'm using ECSlidingViewController in my app. I have a View Controller with a UITableView in it, which uses a UIRefreshControl to execute a long task. When I pull down to refresh, the refresh control starts animating normally but when I go to the top…
0
votes
0 answers

ECSlidingViewController with UITabBarController

I have a requirement where I need to slide the view but thats inside a UITabBarController. Does any one tried doing that ? ECSlidingViewController works perfect if I make it rootViewController but I want that in UITabBarController. I tried setting…
objectone
  • 224
  • 1
  • 6
0
votes
1 answer

ECSSlidingViewController, how to move to a specific view programmatically?

I'm using an ECSSlidingViewController (on iPhone) it works perfectly but I would like to do something special. In my App I have an ECSSlidingViewController, a Menu (UITableViewController) for the underLeftViewControllerStoryboardId and several…
sebastien
  • 2,489
  • 5
  • 26
  • 47
0
votes
2 answers

Selecting first item in TableView menu

I am using ECSlidingViewController to manage my slide to reveal menu. When I first slide the menu over, none of the menu items are selected. Once I select an item, from this point on it will remain selected until I tap another menu item, as…
Kyle Begeman
  • 7,169
  • 9
  • 40
  • 58
0
votes
0 answers

ECSlider slight changes, Up to Down Menu Iphone

I am working with ECSSlider (https://github.com/edgecase/ECSlidingViewController) for iPhone. Need to make some changes in it. I need to show menu by sliding DOWN the top menu and then after selecting option slide back UP the top menu. I have tried…
Awais Tariq
  • 7,724
  • 5
  • 31
  • 54
0
votes
2 answers

ECSlidingViewController Remove Bounce Animation when selecting menu item

When you open and close the menu with the button it just snaps shut, however, when you click on an item withing the menu it bounces to the other side and then back again. Although this is a nice effect it does not work so will with what I am doing…
Recycled Steel
  • 2,272
  • 3
  • 30
  • 35
0
votes
1 answer

adjust base view size ios

I am trying to create an app with a friend picker, similar to that in Facebook, and other similar apps (using ECSlidingViewConroller). I have the slider working so far, however because it is sliding to the left, revealing a view below it, on the…
Jameo
  • 4,507
  • 8
  • 40
  • 66
0
votes
2 answers

ECSlidingViewController previous topviewcontroller

Currently I am replacing the ECSlidingViewController.topviewcontroller to go to a other viewcontroller. But Now I want the previous viewcontroller to return to the last screen. So I am on a list and want to see the details. The…
Robert-Jan
  • 196
  • 3
  • 15
0
votes
1 answer

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 first initial viewcontroller that was on the screen.…
0
votes
1 answer

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 = [self.storyboard…