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

Trying To Create a Slidebar Menu in IOS

I want to create a slidebar menu in my app (As shown in the image below) When I click that hamburger icon, it should show a menu as shown below. I am currently using the SWRevealController, a lib written in Objective C. I created a bridging…
cruise_lab
  • 649
  • 8
  • 21
0
votes
0 answers

SWRevealController setting frontViewController from code

I was debugging my app using Instruments and found out that every time I perform self.revealViewController().pushViewController() memory usage is increasing. I've changed this line to be self.revealViewController().setFront() and now it looks fine,…
JuicyFruit
  • 2,638
  • 2
  • 18
  • 35
0
votes
0 answers

I want to Implement Back Button but i am not getting how to do it

here is the project https://github.com/ChinmayDB/TestingSWRevealViewController With the help of SwRevealViewController i have implemented the navigation drawer to the right . As per the Above Project suppose i am on RedViewController and then i…
Chinmay Balutkar
  • 224
  • 3
  • 15
0
votes
1 answer

swrevealviewcontroller on top of viewcontroller objective c

I am using swrevealviewcontroller for slidemenu. It is working properly. Problem is when i swipe it push my mainviewcontroller to rightside and show the swrevealmenu on left. I want swrevealmenu should display on top of my mainviewcontroller. Is…
ios developer
  • 3,363
  • 3
  • 51
  • 111
0
votes
1 answer

Menuviewcontroller in SwRevealview slide menu not allign in center

I am using SwRevealViewController for slidemenu in Objective c. In MenuViewController.m file i am using one uiview which look like below storyboad But in simulater it looks like below. i.e it doest not appear in center. Whereas my contraints for…
ios developer
  • 3,363
  • 3
  • 51
  • 111
0
votes
2 answers

SWRevealViewController panGesture issue - IOS/Swift

In my application I used SWRevealViewController in order to implement the side menu. There, for some reason I had to put a view which is embed in a navigation controller, before the reveal view controller. This is my storyboard Everything works…
0
votes
1 answer

SWRevealViewController in ios giving bridging header error

My project using SWRevealViewController in ios was working fine before but when i copied it to a new location it was showing revealviewcontroller files missing error. I deleted both the files .m file and .h file. Then I added both the files again…
rajvir singh
  • 111
  • 1
  • 3
  • 9
0
votes
2 answers

SlideOutMenu remove Navigation Bar

I use SWRevealViewController for my project. Currently, the problem is that when the project starts, Navigation bar show with title of "MyApp". But, navigation bar disappears when I click on Home If I add a Navigation Bar in view controller,…
0
votes
1 answer

SWRevealViewController - Get height of rear view

I'm finding a way to get the height of the rear view, I need it because I'm using this code to show and hide an activity indicator: func showActivityIndicator() { DispatchQueue.main.async { self.loadingView = UIView() …
Snoobie
  • 760
  • 2
  • 12
  • 30
0
votes
1 answer

willFinishLaunchingWithOptions not called

My app has an app delegate and I have put code in there that I need to be there under the following method in the delegate: func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions:…
needshelp
  • 595
  • 1
  • 6
  • 25
0
votes
2 answers

Loginviewcontroller before SWRevealviewcontroller with Storyboard objective C

I am using SWRevealViewcontroller by using this sample: I want to add loginviewcontroller before SWRevealViewcontroller. What I've tried: Added loginviewcontroller in Storyboard. Set it as InitialViewcontroller. Inside button action.…
ios developer
  • 3,363
  • 3
  • 51
  • 111
0
votes
1 answer

How to increase SWRevealViewController sidebar Width?

I used my project third party application SWReavelViewController. But i can adjust my Side bar width. Is this any possible to adjust the width.
user7290047
0
votes
1 answer

SWRevealViewController disable interaction with front view(map) when left view are revealed swift 3

I have already implemented the delegate line, but methods doesnt get called. My view is a MAP, and the gesture on map doesnt work either. override func viewDidLoad() { super.viewDidLoad() if self.revealViewController() != nil { …
0
votes
2 answers

How to Disable Interaction in Sidebar Menu using SWRevealViewController

I followed the Sidebar Menu Tutorial from AppCoda.com and I'm having an issue with it. I want to disable user interaction when the user is in the menu. Right now, the user is still able to interact with the main screens despite being in the…
0
votes
1 answer

Side menu in a second View doesn't work

StoryBoard click here This is the print of my storyboard I'm constructing a side menu with SWRevealViewController, but it doesn't work in my main view that is after the login scene, I connect the SWRevealViewController view with the login and the…