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
6
votes
2 answers

pushViewController not working

I am new to ios with swift and swrevealviewcontroller. i faceing a problem! in my slide menu (scene TableViewController Two blue line draw) each row when selected then should be open particuler scene (View controller) but unfortunatly it is not…
cristan lika
  • 415
  • 1
  • 7
  • 22
6
votes
1 answer

Pagecontrol gesture conflict with swrevealcontroller?

I have added swrevealcontroller in my app.On click of item in table it opens a new view controller.I have added a pageControl in that view controller.So first time pan gesture of pagecontrol works but on next time pan gesture does not work for page…
TechChain
  • 8,404
  • 29
  • 103
  • 228
6
votes
1 answer

SWRevealViewController nib cell not performing segue

Simply put, I have a slide navigation view controller in my app with a back table VC and a front table VC. A selected cell in the back table VC is supposed to segue to the front table VC (embedded in a navigation VC). To illustrate, here are the…
Aaron
  • 6,466
  • 7
  • 37
  • 75
6
votes
1 answer

Swift : Redundant conformance of Viewcontroller to protocol UIGestureRecognizerDelegate

I want to add two frameworks SWRevealViewController and SLKTextViewController but I get this weird error. I read about this error but it seems confusing. Redundant conformance of Viewcontroller to protocol UIGestureRecognizerDelegate class…
marrioa
  • 1,265
  • 4
  • 14
  • 29
6
votes
4 answers

Implementing SWRevealViewConroller Library (slide out menu) in multiple storyboards

I am trying to implement SWRevealViewController Library as given in VideoTutorial, I was successfully able to do that but I don't want everything on 1 storyboard, I want to break it down in 2 storyboards AppDelegate Code: func…
T_C
  • 3,148
  • 5
  • 26
  • 46
6
votes
4 answers

How to show resized sidebar using SWRevealViewController?

I am using SWRevealViewController in IOS app (universal). I'm getting sidebar in iPhone and iPad both but I want to show sidebar which covers 90% of screen - how can I?
Premal Khetani
  • 3,175
  • 1
  • 26
  • 58
5
votes
1 answer

Tab Bar is not visible with SWRevealviewcontroller

I am using tab bar with four tab bar item. First tab bar item view is front view of swrevealviewcontrtoller. I attached storyboard view controllers detail image. And output with no tab bar.
5
votes
2 answers

Override Back Button In Navigation Controller

I have storyboard with these flow. I am using SWRevealViewController to navigate to each navigation controller. - Navigation Controller 1 --> View Controller Initial (Home) --> View Controller Target - Navigation Controller 2 --> View Controller X…
Sonic Master
  • 1,238
  • 2
  • 22
  • 36
5
votes
2 answers

implement login screen before swrevealcontroller

I've just started learning IOS development, I've successfully implemented the SWRevealViewController by following a given tutorial online all is working as expected. I've then decided to add a login screen, which would be the first page the user…
Code Ratchet
  • 5,758
  • 18
  • 77
  • 141
5
votes
3 answers

How to push viewcontroller from appdelegate in storyboard inside navigation controller

I am using SWRevealViewController in my project, and I want to open a particular controller when the app receives a notification. I have tried so many solutions but nothing works. I follow this…
5
votes
1 answer

Disable SWRevealViewController bouncing on addGestureRecognizer

I'm trying to use SWRevealViewController in my app which is sliding menu library, but i needed to edit the library with one option and i will explain as follows. when using addgestureRecognizer and opening the sliding-menu by keep on holding from…
Nata Mio
  • 2,168
  • 3
  • 22
  • 46
5
votes
4 answers

Implementing SWRevealViewController in Swift

I am using the 'plugin' SWRevealViewController to help produce a sidebar in my app. Now in objective-C, you can control the side bar using the following code: [self.sidebarButton setTarget: self.revealViewController]; [self.sidebarButton…
Prateek
  • 1,724
  • 3
  • 15
  • 27
5
votes
0 answers

SWRevealViewController, prevent from hitting viewdidload

So I am using SWRevealViewController to do the slide out drawer UI. One of my ViewControllers hosts a Map, and I allow the user to do things on that map and customize. I noticed that every time I move between front and back VC's using…
Eddie
  • 949
  • 1
  • 8
  • 15
4
votes
1 answer

UINavigation controller to UITabbarcontroller issue with SWRevealViewController in iOS Swift

In my project i have three tabBar item home, notification and profile. And side menu controller has home, bookings, profile and logout. Side bar menu controller was done by using SWRevealViewController cocopods. When i navigating side bar menu to…
4
votes
1 answer

Create slide menu using SWReavealController with TabbarViewController programmatically - swift

I am creating a sample app which contains TabBarViewController and also i implement slide menu using SWRevealViewController and the problem is that the slide menu it not showing out. Here i set rootViewController in appdelegate window =…
Visal Sambo
  • 1,270
  • 1
  • 19
  • 33
1
2
3
38 39