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

How to redirect to UINavigationController from SWrevealController in iOS?

I am using SWReaveealController in my app. On click of UITableView to the left in app i am showing some screens. I have help option in left UITableView. When click on that i further showing a UITableViewController. In HelpViewController there are…
Dheeraj Kumar
  • 327
  • 2
  • 6
  • 19
0
votes
1 answer

How to open the menu to start the application with swrevealviewcontroller?

I am using the swrevealviewcontroller library, and I would like when my app starting the hamburger menu is open. I 've been looking at the library , but I did not see how it could do. Thanks
jorgemht
  • 18
  • 4
0
votes
1 answer

SWRevealViewController shows 10 seconds delay on initial view controller

I am using SWRevealViewController for an app. Before the main storyboard, I have another storyboard where I am logging in the user and setting him up for use. Once the user is logged in, I present the reveal view controller, which has the proper…
Mark A
  • 1
0
votes
1 answer

Unable to open sideBar with SWRevealViewController and TabBarController Swift

I am using SWRevealViewController with TabBarController in swift. This is the link of my sample project. When I am clicking on menu button it is not showing me the side menu. Anyone Can suggest me what am I missing in my project?? Here is the image…
Riddhi Shah
  • 733
  • 4
  • 11
  • 25
0
votes
0 answers

Swipe error when using SWRevealViewController and UIScrollView (Swift)

I have problems when using SWRevealViewController and scrollview. I created sidebar menu follow the instructions below (Swift 2.0 & XCode 7.): Sidebar Menu Tutorial Swift 2.0 You see the following picture: SWRevealViewController conflict…
0
votes
1 answer

Handle CellForRowAtIndexPath in SWRevealViewController in swift?

Problem: IF User "Login" the i want show "Logout" option in cell and vice versa. but i created UI in Storyboard as I have created custom UITableView class and cellForRowAtIndexPath look like override func tableView(tableView: UITableView,…
Avijit Nagare
  • 8,482
  • 7
  • 39
  • 68
0
votes
0 answers

How to create UITableview inside a UITableviewCell like Submenu

I want to create tableview inside a tableviewcelllike submenu.Right now i am using SWRevealviewController to open a sidemenu on Single ViewController screenshot below. Right now i am using custom tableviewcell in in tableview.my question is how to…
viratpuar
  • 524
  • 1
  • 5
  • 22
0
votes
1 answer

how to add title to side menu

I have just created a side menu using library SWRevealViewController in IOS. I want to set title for my side menu when i click on side menu icon. I tried the below code but it is not working. #import "MenuViewController.h" #import…
0
votes
1 answer

SWRevealViewController pushing FrontVC is not causing animation and not responding to notifications

I am working on SWRevealViewController in which I have a scenario in which - Demo code link - https://www.dropbox.com/s/02fjub838hv95cr/SWRevealVC.zip?dl=0 1) I have to present a ViewController's view*(NotificationVC in my storyboard)* in my…
G.Abhisek
  • 1,034
  • 11
  • 44
0
votes
0 answers

Disable front view interaction SWRevealController

I have set up an SWRevealController menu that slides out from the right side of my app. I have a button on the right hand side of my navigation bars that reveals the menu. I am trying to disable user interaction on the front view when the menu is…
rohaldb
  • 589
  • 7
  • 24
0
votes
1 answer

SWRevealViewController after a login view

I have an app that have a login view and then after the login is successes I want to have a view with a side menu. I am using SWRevealViewController to make the slide menu. But the problem as I said is the login view will be the first view not the…
miss h
  • 133
  • 1
  • 2
  • 15
0
votes
0 answers

SWRevealViewController not opening slide menu

I am using SWRevealViewController for a slide out menu in one of my project. I have a scenario in which I have a View Controller not connected to the reveal view controller/front VC/RearVC . I am moving to this VC from one of my VC via…
Kamala Dash
  • 245
  • 3
  • 16
0
votes
0 answers

SWRevelViewController with iOS 9 Xcode 7

Im currently using on my app (build on iOS 7 target objective c) SWRevelViewController in a large storyBoard (20+ VC's). I'd like to revamp my app and bring it up to date to iOS 9 and a new storyBoard. Now i see SWRevelViewController hasn't been…
rony_y
  • 535
  • 1
  • 8
  • 26
0
votes
1 answer

Mask view not removed from super view in case of SWRevealViewController

I am trying to add a mask view to my front view in case when my rear view appears and I have written the following code for it - func revealController(revealController: SWRevealViewController!, willMoveToPosition position: FrontViewPosition) { …
G.Abhisek
  • 1,034
  • 11
  • 44
0
votes
1 answer

SWRevealViewController opening method

I am currently using SWRevealViewController to have a left menu. I would like to know when the user is showing/closing it by dragging but I can't find any method to perform that.
Max
  • 316
  • 2
  • 15