Questions tagged [swrevealviewcontroller]

A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps

  • A Reveal view controller implemented using view controller containment.
  • API easier than a UINavigationController.
  • Support for any combination of left/right rear controllers.
  • Correct handling of appearance methods on its child controllers that you can rely on.
  • Correct handling of rotations.
  • Can be embedded as a child view controller of other controllers or deployed as the rootViewController.
  • Plays nicely with any child view controllers or parent controllers.
  • Can be deployed as a child of itself to create cascade-like, hierarchical interfaces.
  • Seamless integration of pan gesture recognizer, behaving as smooth as silk.
  • A category method on UIViewController, revealViewController, to get the parent SWRevealViewController of any child controller, similar to the UIViewController's property navigationController.
  • Lightweight, clean, easy-to-read, self-documenting code that you will enjoy using in your projects.
580 questions
0
votes
0 answers

SWRevealController with localization (Right to Left), Swift

I recently used SWRevealController for IOS and it worked fine, but when i tried to test localization for Right to Left languages, the rear view still slides from Left, it should do from Right, is there any way to call sw_right segue instead of…
0
votes
3 answers

Sidebars on different ViewControllers using same SWRevealViewController

I have used SWRevealViewController to create side bar. As in this I have used my HomeViewController as front and SidebarViewController as right. My SidebarViewController contain a UITableView(Having different subject names). I want to open a new…
0
votes
1 answer

Dismissing a View Controller that was reached by a custom push segue

I am trying to dismiss a view controller or otherwise go back to the previous VC on a VC reached by a custom view controller (SWRevealViewController push segue). I understand that since it was not presented modally, I can't use…
Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
0
votes
1 answer

How could I access a SWRevealViewController Table Cell so that I can performSegueWithIdentifier

I have a SWRevealViewController that opens a side menu, from which I connected the segue manually in my Storyboard. I want to programmatically use performSegueWithIdentifier once a cell is clicked, but I don't know how to access the "Cell Clicked"…
Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
0
votes
2 answers

shouldPerformSegueWithIdentifier not working with SWRevealViewController

I am trying to prompt an alert and request payment for premium features in my app before a segue happens, but shouldPerformSegue doesn't seem to be working. I have a SWRevealViewController that opens a side menu, from which I connected the segue…
Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
0
votes
1 answer

SWRevealController not working with NavigationController

In my previous question, i asked about including a log in page with my SWRevealController slide out menu before moving onto a home page. The solution was the following set up: However, i need a navigation bar in order to house the button to open…
0
votes
1 answer

SWRevealController include Log in page - Swift

I am unable to find a suitable solution to this issue in swift. I have implemented a SWRevealController slide out menu via Appcoda, in which the initial view controller must be an empty view controller. I am attempting to include a log in page,…
rohaldb
  • 589
  • 7
  • 24
0
votes
2 answers

How can I implement SWReveal for iOS navigation with back buttons

I try to use SWReveal to manage menu and views in an iOS app. No problem for implement it. The 'sw_front' view controller is the home for the app. There's 4 buttons to access to 4 different screens. The 'sw_rear' view controller is the menu to…
kopacabana
  • 437
  • 3
  • 17
0
votes
0 answers

Navigation Bar not showing in View Controller from Navigation controller

currently im using a SWRevealViewController to create a sidebar menu, everything is working perfectly except that I have several navigation controllers with their respective rootViewController in which they have a navigation bar but when I simulate…
Room
  • 1
  • 2
0
votes
1 answer

How to pass data from oneviewcontroller to anotherviewcontroller while using swrevealviewcontroller?

this is my code: let swswipe:SWRevealViewController=UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("swswipe") as! SWRevealViewController if(indexPath.row==0) { let swipe=swipeView() …
0
votes
0 answers

Changing ViewControllers within viewWillAppear using SWRevealViewController

I'm trying to change ViewControllers within a viewWillAppear method of a view nested inside a SWRevealViewController, and viewWillAppear is not being called on the new view. Is this bad practice, and is there a way around it? My view hierarchy…
JustinHK
  • 758
  • 1
  • 6
  • 19
0
votes
1 answer

I am trying creating slide out menu in ios using SWRevealViewController

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if([segue isKindOfClass:[SWRevealViewControllerSegueSetController class]]) { SWRevealViewControllerSegueSetController *swSegue=(SWRevealViewControllerSegueSetController…
0
votes
1 answer

Always display tabBarController when pushed to any viewController

I have 1 UITabbarController with 3 ViewControllers belong to its named aVC-bVC-cVC(VC = ViewController). Then I have 1 MenuSideBar have others 3 ViewControllers named dVC-eVC-fVC. All I want is whenever I push to dVC or eVC or fVC my…
0
votes
1 answer

SWRevealViewController and UITabbarController

I am using SWRevealViewController to create a Menu View. I am builded success and everything work fine like my Storyboard image below. Now what I want is when I push to Maps and Image ViewControllers(that 2 ViewControllers belong to MenuSide bard)…
sunsunai
  • 161
  • 4
  • 11
0
votes
1 answer

Customize SWRevealViewController

I used SWRevealViewController to create a slideout menu for my iOS app. Now I would like to customize it. I've been trying to use this tutorial as a reference http://www.ebc.cat/2015/03/07/customize-your-swrevealviewcontroller-slide-out-menu/.…
jkw224
  • 51
  • 1
  • 6