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

SWRevealViewController pushing down front view controller

I'm currently using SWRevealViewController with Storyboards and I'm seeing a behavior I didn't see until recently. Originally, in one of my front view controllers, I was using a UITableViewController and it worked fine. However, I needed to swap it…
0
votes
1 answer

Let me know the functionality of this code

I am new to ios.I am debugging a code and i have gone through the following lines i dont understand the functionality.Let me know if any one understands. - (void)prepareForSegue: (UIStoryboardSegue *) segue sender: (id) sender{ if ( [segue…
0
votes
1 answer

How to create a slide-out menu (like on the Facebook app) without the home screen reloading? (ios)

So I've been using this tutorial to implement a sliding menu on my iOS app. However, when I try to hit the home cell button, the home controller refreshes as it, from my understanding, is placing another version of the controller on top of the old…
Kyle Bachan
  • 1,053
  • 2
  • 15
  • 33
0
votes
1 answer

Adding Menu Button to a Pushed View Controller

I'm using the SWReveal library for my side menu. How do I implement this menu on a view controller that is pushed from my main menu item?
aj_f
  • 932
  • 7
  • 12
0
votes
2 answers

Preserve state of GMSMapView when using custom segue

Currently, i'm using SWRevealViewController to create a sidebar and google map api for my project. https://github.com/John-Lluch/SWRevealViewController Here's the problem. Everytime I switch between ViewControllers using the sidebar and back to the…
Pham Hoan
  • 2,107
  • 2
  • 20
  • 34
0
votes
1 answer

iOS Slide out menu is causing app to crash. How to fix?

I am creating an rss feed app with a slide out navigation bar as shown here(http://www.appcoda.com/ios-programming-sidebar-navigation-menu/). The app will load and RSS feeds will parse and appear on my main screen. You can click on a feed and it…
Steve Sahayadarlin
  • 1,164
  • 3
  • 15
  • 32
0
votes
0 answers

Table not loading data after adding SWRevealViewController

After a bit of bungling I have added a reveal view controller to my app but now it doesn't seem to be loading the data. I can't see where my changes would have affected that aspect of the app. in didFinishLaunchingWithOptions I changed…
0
votes
1 answer

Accessing tableViewController from appDelegate after adding SWRevealViewController

I have an app which displays a simple tableview and I wanted to add the SWRevealViewController as well. In my appDelegate, before I added the SWReveal VC, I was setting my tableViewController like so... In…
Christian
  • 336
  • 1
  • 4
  • 16
-1
votes
2 answers

how to pass data from one view controller to another and between the view controller there is a reveal view controller

Login to the page using email id and password and then i want to send data from login page to profile page, but my profile page is linked with the SWrevealviewcontroller as of to show side menu. I am trying using default values. Login View…
-1
votes
3 answers

Tableview Cell requires two taps to reveal the view

I had a problem with table view didSelect method and prepareForSegue. I used SWRevealController in my app. While selecting cell it reveals the view. Sometimes it not worked properly. It takes two taps to reveal the view. A few months back I used old…
phani
  • 105
  • 2
  • 15
-1
votes
1 answer

How to back to reveal view controller after perform segue a view controller in swift?

I use Reveal View Controller in Swift 3. When in my "sw_front" tagged mymainpageViewController I use perform segue a View Controller. When I want to back its nothing working. (perform segue or reveal view controller push controller..) How can I back…
user7904906
-1
votes
2 answers

Passing data between login controller and FirstviewController when using SWRevealViewController

I am using SWRevealViewController for a slide out menu on the FirstViewController of a tabbed application. I am instantiating the revealviewcontroller from the login controller.revealview controller connects to tabbarcontroller and tableview…
-1
votes
1 answer

SWRevealViewController: Change color of frontview when rearview(menu) is open

I am using Swift 3 with SWRevealViewController to create side bar menu app. How do I control the color of front view when rear view (menu) is open? I would like to display gray color (like disabled/ transparent). So far whatever I tried hasn't…
SRM
  • 43
  • 7
-1
votes
1 answer

SWReveal View Controller (IOS App development)

I am using SWRevealViewController to show front and rear view. Inside rear view I am using full view Mode and insert table view, but table view cell content is not lies in the middle of screen. it little swap to the right side. I have tried almost…
-1
votes
1 answer

in SWRevealViewController I deleted the file But I can't add it

I accidentally deleted the file that create in my project I had imported two files in my project with this name(SWRevealViewController.h and SWRevealViewController.m) and after that the Xcode has made a file But I deleted that I can't recover…
1 2 3
38
39