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

From ViewController navigate back to SWRevealViewController Front Page

As you can see in the picture, there're 3 controllers at the bottom which are (HomeTableViewController, NavigationViewController and NewsViewController) HomeTableViewController is the Main Page which I'm using the SWRevealViewController and set it…
0
votes
1 answer

SWRevealViewController - managing 2 different left menus

So Ive implemented the SWRevealViewController in my app, with much success so far. A challenge I have now is that I want to accomodate a different Menu based on a different user profile type. Currently I am able to push a new 'frontViewController'…
Simon
  • 2,065
  • 3
  • 21
  • 28
0
votes
3 answers

SWRevealViewController Set Front VC Objective-C

I implemented SWRevealViewController in my project for Side menu item. Basically am app is kind of Music application. Songs from Home screen will remain playing continuously if the user in some other screen or in background. Am following this…
Yuvaraj.M
  • 9,741
  • 16
  • 71
  • 100
0
votes
1 answer

Passind data from VC to VC through NavC-SWRevealController-NavC

I have a problem with passing data between View Controllers Now, to open Base Chat VC, from ConversationsVC I use UINavigationController *chatNav = (UINavigationController *)[self.storyboard…
0
votes
1 answer

SWRevealViewController with pragmatical view

i currently developping an app in Swift 2.0, and i use the "SWRevealViewController" library. My question is simple, do you know if it is possible to use "SWRevealViewController" in a pragmatical view, which is loaded with…
f1rstsurf
  • 637
  • 1
  • 6
  • 22
0
votes
0 answers

Pass String Using NSNotifcation in iOS

I am pretty sure this question has been asked and answered, but I am not sure what I am doing wrong that I am not being able to get the method called from NSNotificationCenter. I have two classes : Sign In Class And Calendar View Class I want to…
0
votes
1 answer

Front View Controller stays open

I am using SWRevealViewController to implement a slide view. Upon sliding, the rear view controller is opened. However, when I select an item in the table, the new 'destination' controller is correctly invoked, but the front view controller stays…
0
votes
2 answers

I need to reload a table view menu when user login or logout with swreveal controller on swift?

I have a "Login" button on my table view menu. When user touches, it shows the login view i need. When user logs in successfully, reload the table view to hide "login" button and show "Account" Button and viceversa on swift
0
votes
4 answers

SWRevealViewController and 3D Touch quickActions

I have an application implementing a side menu in swift. (http://www.appcoda.com/sidebar-menu-swift/) I implemented 3D touch shortcut, quick actions, it almost works. The problem is I arrive directly on my view without instantiate…
papay0
  • 1,311
  • 1
  • 12
  • 25
0
votes
6 answers

SWRevealViewController not able to call from the appdelegate.m

I am calling SWRevealViewController in Appdelegate.m SWRevealViewController *svc = self.revealViewController; UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; FrontVC *homeVC = [storyboard…
user4238267
0
votes
2 answers

prepareForSegue: sender: not being called in app with a menu using SWRevealViewController

I have an app with a sidebar menu using SWRevealViewController. I followed this tutorial on how to make it, but have a problem. I have many subviews of the first subview that has the prepareForSegue: sender: method. In my subclass view controller, I…
Minebomber
  • 1,209
  • 2
  • 12
  • 35
0
votes
1 answer

Disabling specific view components (When SWREvealViewController is shown)

I'm using John Lluch's SWRevealViewController in my application and when the sidebar is out and the user wants to close it, the front view is constantly clicked. What I want to do is disable the front view when the sidebar (Rear view) is shown, but…
Joakim
  • 3,224
  • 3
  • 29
  • 53
0
votes
1 answer

Logout SWReveal View Controller

Hello I am new to IOS and I have difficulty with some issues. I am using SWRevealViewController and I need to log in and logout from it. I switch between login screen and main screen in AppDelegate BOOL isLoggedIn = [[NSUserDefaults…
mmrayyan
  • 53
  • 1
  • 5
0
votes
2 answers

SWRevealViewController not passing parent in XCode 7

There's a similar thread on the SWRevealViewController github page that isn't going anywhere fast, so I thought I'd put this up for the experts here. I have SWRevealViewController 2.4 at use in my app. It's been working fine for months (was…
0
votes
1 answer

SWRevealViewController how to know which frontViewController has called the RearViewcontroller

I'm using SWRevealViewController. My frontViewController displays the various different content of the app and the rearViewController displays a table with links to those options. So if my frontViewController is currently display the Home page I…
Linda Keating
  • 2,215
  • 7
  • 31
  • 63