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

SWRevealViewController issue-Drawer is open,when scrolling frontviewcontroller

I am using SWRevealViewController.Problem is that when i am scrolling tableview or swipe tableview (on frontviewcontroller),drawer is open.Means PanGestureRecognizer is fire when i am scroll the tableview.I have tried the lot of things but not get…
0
votes
2 answers

SWRealViewController over UINavigationBar subview hides UINavigationItems

When I layer SWRevealViewController over a normal UIViewController's view, to achieve a sliding left menu effect, it works as intended. However, when this view controller is embeded on a UINavigationController, it overlays the navigation bar and…
AresDev
  • 538
  • 4
  • 8
0
votes
1 answer

ios - SWRevealViewController segue to last view in navigation controller when receive push notification

I'm using SWRevealViewController 2.3.0 in my project. My storyboard is designed as below: https://i.stack.imgur.com/txv0G.png When the app is not running (completely terminated) and a push notification comes, how to get the Detail view controller…
0
votes
1 answer

SWRevealViewController and passing objects

I want to pass an object to my rear UIViewController when I reveal it. I set up the SWRevealViewController in the interface builder. I tried passing it in prepareForSegue for segue id "sw_rear" however I noticed that this isn't even called when the…
Kex
  • 8,023
  • 9
  • 56
  • 129
0
votes
1 answer

SWRevealViewController push segue create a new instance of the front destination controller. How can avoid it?

I'm developing a simple iOS app and I'm using the famous library SWRevealViewController for the side menù. I have the first view that is a Map with POI (front controller) and the side menù (rear controller) that contains the categories. Now when I…
Max
  • 89
  • 1
  • 8
0
votes
2 answers

how to use pushFrontViewController of SWRevealViewController with swift

I have discover that the pushFrontViewController function in SWReveal. I have added the UIViewController in the storyboard's Contact. And I am trying covert to swift, but it do not work. Here is the code: override func tableView(tableView:…
Jacky Shek
  • 953
  • 1
  • 11
  • 35
0
votes
1 answer

Pan Gesture Not Working With SWRevealViewController

I'm using SWRevealViewController to have a sidebar menu in my iOS app. Both my front and rear view controllers are table view controllers. My front view controller has a bar button item that displays the rear view controller, and I've also enabled…
0
votes
2 answers

Performe, navigate, to child view from App Delegate

I'm trying to open child view(PostReaderViewController, the fourth view on Image ) when application is lunched through Push notification It's. Storyboard Image : This is my Code : - (BOOL)application:(UIApplication *)application…
0
votes
1 answer

Modify frame of the frontView in SWRevealViewController

Typically, if one is using SWRevealViewController, the front view fully covers the rear view, and the rear view is visible only if some action is performed (swipe, tap etc). My requirement is that the rear view should always be visible at least a…
StudentX
  • 2,506
  • 5
  • 19
  • 28
0
votes
1 answer

UIViewController before SWRevealViewController

I use SWRevealViewController to implement sideBarMenu. It is all ok, it works fine. But now I need to create a screen, before it. This is a loading screen where user can see how new data is loading to application from server. After loading…
nabiullinas
  • 1,185
  • 4
  • 20
  • 41
0
votes
1 answer

Can't set delegate in SWRevealViewController on storyboard

I am using SWRevealViewController on storyboard. I implemented prepareForSegue method but I don't know how to set delegate of any view controller so I can implement some methods revealControllerPanGestureBegan and revealControllerPanGestureEnded I…
Chintan
  • 2,768
  • 4
  • 27
  • 43
0
votes
1 answer

SWRevealViewController Different Content based on Current View

I'm using SWRevealViewController to get the side menu to show different content based on which tab the user is currently on. I've created a global variable in called location in AppDelegate to find out where the user is. For my sidebar, I'm using…
0
votes
3 answers

iOS -navigate from AppDelegate to FrontViewController of SWRevealViewController

I try navigate to FrontViewController of SWRevealViewController from AppDelegate In AppDelegate.m UIStoryboard *storyboard =[UIStoryboard storyboardWithName:@"Main" bundle:nil]; Home_tableView *home =[storyboard…
Mina Fawzy
  • 20,852
  • 17
  • 133
  • 156
0
votes
1 answer

Change overlap order for SWRevealViewController

Change overlap order for SWRevealViewController We call home view as front view, and sidebar view as rear view; My question is, can we change just the overlap, say the sidebar is on top, and the home view is under sidebar? This does not change…
Wingzero
  • 9,644
  • 10
  • 39
  • 80
0
votes
1 answer

How to implement a slide down setting view in a sidebar view, jut like Gmail on iOS

I am searching for a easy or good way to implement a slide down setting view in sidebar view, just like what Gmail did on iOS. If you click the small down arrow on Gmail's side bar view, it will show a setting view with animation down to the…
Wingzero
  • 9,644
  • 10
  • 39
  • 80