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
1 answer

Pass data to each view controller of swrevealviewcontroller

I have a sign in page and after I sign in, i want my program to pass a variable to a bunch of view controllers that are connected by SWRevealViewController. But I don't know how to. This is the code I use to pass the variable "username" to the first…
0
votes
4 answers

swrevealviewcontrtoller change toggle button image when side menu open/close?

I'm using SWRevealViewContrtoller for slide-out side menu in my app. Which is working fine. But I have an issue, how can I change side-bar button image when button clicked or user dragged side menu. I'm referring to this link. Thanks in advance
user6274686
0
votes
0 answers

UIBackButtonItem Disappears when Presenting Modal View

I want my app to share something in Facebook with this code. When I am done sharing or cancelled sharing. Then it returns to my ViewController embedded in a NavigationController. The Back bar button item disappears(somehow hidden) but still…
0
votes
2 answers

didSelectRowAtIndexPath in revealViewController

I'm working with revealViewController, and inside this revealViewController I wanted to create a UITableView with custom cells according to this tutorial: https://www.youtube.com/watch?v=EVJiprvRLoo and here is my code: func tableView(tableView:…
Cs.John
  • 31
  • 7
0
votes
1 answer

my slide menu button and Tabbar items not working/populating in reveal viewcontroller . why?

I have used revealviewcontroller in which I take a view controller and set its sw_front to a tabbar controller and sw_rear to tableview controller. when I am running , its working fine . In tabbar controller I have added 5 different view…
PRADIP KUMAR
  • 489
  • 1
  • 9
  • 31
0
votes
1 answer

How to navigate Inner view controller from App delegate

in my app delegate this is how I navigate to my SWRevealViewController let revealViewController = mainStoryboard.instantiateViewControllerWithIdentifier("RevealView") as? SWRevealViewController self.window!.rootViewController =…
user1960169
  • 3,533
  • 12
  • 39
  • 61
0
votes
1 answer

Issue Regarding SWRevealViewController Displaying Table Contents

Firstly, I'd like to state that in the simulator my "app" is working flawlessly, the problem arises as soon as I compile and run the "app" on my phone. The bar button item doesn't work nor do any pan gestures. However, in the simulator, as stated,…
0
votes
1 answer

SVRevealViewController does wrong offset from the top layout guide

I have simple SearchViewController with menu button at the top left corner. Using SVRevealViewController I automatically setup front view controller. It works and looks like this: but later on action from this controller I load this controller…
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
0
votes
1 answer

Persist view controller state in SWRevealViewConttoller in iOS?

I am using SWRevealViewController for navigation drawer in iOS.I have one main screen which is shown by default when app launches.I have also other screens like Settings,Help,About. So when user switch between screens then state of 1st view…
Dheeraj Kumar
  • 327
  • 2
  • 6
  • 19
0
votes
1 answer

swrevealview controller side bar menu wont dismiss after open another view controller [swift]. How should i close it?

swrevealview controller side bar menu wont dismiss after open another view controller [swift]. How should i close it?
minimomo
  • 581
  • 1
  • 6
  • 16
0
votes
0 answers

SWreveal remove and add back button in ios

enter image description hereI tried like this: SWRevealViewController *revealViewController = self.revealViewController; if ( revealViewController ) { [self.sidebarButton setTarget: self.revealViewController]; …
0
votes
2 answers

SWRevealViewController - reveal it manually under @IBAction

This is my StartViewController with simple @IBAction: class StartViewController: UIViewController { @IBAction func startButtonTapped(sender: UIButton) { revealViewController().revealToggleAnimated(true) //error } } Along with the…
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
0
votes
1 answer

how to send data from one ViewController to another which has SWRevealViewController

I have impleented SWRevealViewController for sideMenu. My project is is Swift and SWRevealViewController is in Objective-c. SWRevealViewController is not initial view Controller.there is one intial View Contoller(1VC) and it has Push segue on…
0
votes
1 answer

Is it possible to convert SWRevealViewController to UISplitViewController when I run on iPad?

I have an app created on SWRevealViewController on iPhone but now Client wants to create iPad app. And all Viewcontroller created using XIBs. He wants UISplitViewController like UI(Landscape Mode) which is difficult to convert whole app. When I run…
0
votes
1 answer

Push segue in SWRevealViewController not working properly

I am using the SWRevealViewController library for a side menu within my main view. Side menu consists of tableView. I have followed This tutorial DashBoard Controller in frontView and tableView is rear a view. Route Assistant is view which segue…
Komal Kamble
  • 424
  • 1
  • 8
  • 25