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

How to set title of navigationitem which have titleview for some conditions

I have a navigationItem with a titleView. Now in some conditions I want to use the title property for that navigationItem. How to do that? Any idea? Here is what I have tried, however is not…
Payal Maniyar
  • 4,293
  • 3
  • 25
  • 51
0
votes
2 answers

How to hide iOS keyboard when side menu opens?

I am using SWRevealViewController for side menu and IQKeyboardManagerSwift for keyboard. When I am editing content in textfield and tries to open menu, the keyboard should automatically hide but I can't manage to do so. How should this be done?
Gaurav
  • 97
  • 3
  • 9
0
votes
3 answers

SWRevealViewController can't pop view controller to previous one

this is the screen shot of storyboard I'm using SWRevealViewController and trying to pushing other view controllers by using this code: UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"main" bundle:nil]; MyprofileQRsViewController…
0
votes
0 answers

Showing MBProgress HUD inside SWRevealViewController

I'm showing MBProgressHUD in menu bar of SWRevealViewController. When I scroll the menu and again open the menu the position of MBProgressBar changes. I want the position to remain in the center of menu all the time. hud = [MBProgressHUD…
shakshi
  • 231
  • 1
  • 2
  • 9
0
votes
1 answer

Button action is not moving to another vc in which sidebar is emmended

When I click on the button, the screen is not changed in which sidebar is embedded. I think it is a problem related to the class name given SWRevealView Controller to 2nd controller. Can any one help me to sort out this problem? My code is: -…
Bansal
  • 67
  • 1
  • 1
  • 6
0
votes
1 answer

iOS Swift - SWRevealViewController can't be accessed after google sign in

After successfully sign in via google, I can't seem to access the SWRevealViewController. The icon and animation is there but clicking it doesn't open up the menu. I'm not sure if I have to go to ViewController (code in the image) and push to reveal…
Doan Trinh
  • 13
  • 5
0
votes
1 answer

Blur the FontView when SWRevealViewController menu opens

I use a slide menu in my app which i created with SWRevealViewController. Now I want to blur the FrontView when the user opens the menu. How is that possible? My idea would be to have a blurView in the FrontViewController with an alpha value of 0.…
user5331311
0
votes
1 answer

How to set the revealToggle method inside a UITabBarItem and not a UIButton using 'SWRevealViewController'?

I'm trying to implement SWRevealViewController but having some issue when trying to bind the toggle to my Tab Bar, instead of navigation bar or a button like they suggest in their examples. In their documentation's tutorials, they…
user5563983
0
votes
1 answer

SWRevealViewController not working on iPad

I use SWRevealViewController as the menu in my App. Since today the App is only available for the iPhone. Now I want to make it ready for the iPad but there's a problem (look at the pictures. The first one shows the App on an iPhone (looks normal),…
user5331311
0
votes
2 answers

SWRevealController click event does not work, while sliding background works well

Using SWRevealViewController, I made a slide view which appears from the right. It is supposed to be triggered by clicking a certain button on the navigation bar or sliding the screen right to left. The view which appears is displayed in the center…
0
votes
1 answer

pushfrontviewcontroler open blank screen

I need to set to root for second view controller through SWRevealViewController. But when I call pushFrontViewcontroler it become a blank screen. All my label that I defined in storyboard is missing. But the external xib i include is properly…
Acan1234
  • 65
  • 1
  • 9
0
votes
2 answers

Dismiss side menu

I want to dismiss the side menu view, which I implemented with the SWRevealViewController. How can I do this?
minimomo
  • 581
  • 1
  • 6
  • 16
0
votes
1 answer

How to configure SWRevealViewController Programmatically?

I am working on application where after registration process home screen will appear. And the SWRevealViewController has been configure in home screen. I want to configure SWRevealViewController programmatically. Below is my code let storyboard =…
user3432164
0
votes
2 answers

SWRevealViewController with TabBarController

I use SWRevealViewController in my project. My app have TabBarController. I did that I open the menu. When I select in menu it open without TabBarController bottom. I use Storyboard. My start View is ViewController with class SWRevealViewController.…
Ales
  • 13
  • 5
0
votes
1 answer

Can't get SWRevealViewController working (Swift 2, Xcode 7)

Have a lot of trouble trying to implement SWRevealViewController: GitHub Link I've followed a few different tutorials and still can't get it to work. After I've followed the directions: import SWRevealController Obj-C Files add bridging header and…
ryanbilak
  • 383
  • 1
  • 2
  • 13