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 use pushFrontViewController with SWRevealViewController

I am using the SWRevealViewController library. Using an AppCoda tutorial (also excellent), I've managed to get this working well. However, I have now configured a 'settings' screen where I want to save the content into Core Data and then pop the…
Jon M
  • 530
  • 5
  • 17
0
votes
1 answer

Slide Out Navigation not working when I use revealToggle: method (SWRevealViewController Class)

I have successfully implemented SWRevealViewController Class in my project. https://github.com/John-Lluch/SWRevealViewController But when I use revealToggle: method as my left bar button item action, it shows a complete black screen. The View is…
0
votes
1 answer

panGestureRecognizer and Table Swipe

I have a UITableViewController in Swift. This has a large table with the functionality to swipe and delete rows as necessary. This works fine when it's on its own. I also have a sidebar function with the SWRevealViewController framework. As soon as…
Prateek
  • 1,724
  • 3
  • 15
  • 27
0
votes
1 answer

panGestureRecogniser and table cell delete

I'm having a bit of a problem with a clash of functions of sorts. I am using SWRevealViewController to create a sidebar and this works with the following…
Prateek
  • 1,724
  • 3
  • 15
  • 27
0
votes
2 answers

SWReveal TabBarController and Nav Bar issue

my issue can be seen in the below video: https://www.dropbox.com/s/cql7r7b49lgffh9/navbarissue.mov I have the following storyboard setup: To describe the problem in words...when the app loads it pushes…
0
votes
0 answers

NavigationItem incorrectly displayed when using SWRevealViewController Segue

I have the following scenario : please see the image below : I have a SideMenuBar (SWRevealViewController) with one of the items in it being "Login" . On clicking "login" , I would use a custom SWRevealViewController segue to go LoginViewController…
0
votes
0 answers

XCode - compiling C and C++ files together, SWRevealController

I am building app for iOS (I am really new to programming, so I basically cut-copy-paste my way through this). I want an app, that has slide menu [from here http://www.appcoda.com/ios-programming-sidebar-navigation-menu/] After clicking the screen…
AciD
  • 113
  • 3
  • 8
0
votes
0 answers

Select row of UITableView and push ViewController according to row

I am using a custom control, SWRevealController for left-sliding menu like facebook. I have to ask user to sign in if he is not signed in and selects an option that require sign in. I show an authentication view controller on clicking and user…
iBug
  • 2,334
  • 3
  • 32
  • 65
0
votes
1 answer

How to open SWRevealViewController side panel automatically in landscape orientation

I'm trying to make my app using SWRevealViewController show the side panel automatically when the device is turned to landscape orientation, and I can make it do so when the app initially opens but not after that. Basically I'm trying to make it…
user2330922
  • 141
  • 1
  • 6
0
votes
0 answers

iOS Xcode Update altering Prototype cells

I was working on an app for iOS7 in Xcode 5 but since upgrading to iOS 8 and Xcode 6 I've been getting some issues. Basically, I am using SWRevealViewController in order to create a sliding sidebar for my app. This sidebar has numerous rows which…
Prateek
  • 1,724
  • 3
  • 15
  • 27
0
votes
0 answers

SWRevealViewController setFrontViewController issue

I have a searchbar in my rearviewcontroller. When I click the "search" button, I want my frontView to change (to a searchViewController). The problem is, when i'm pushing with: setFrontViewController:animated: the navigationBar isn't showing…
Gezurb
  • 143
  • 2
  • 12
0
votes
0 answers

Black Screen after Adding MessageUI Framework

I have an iPhone app that was working fine. I wanted to add SMS and email functionality, but when I add the MessageUI Framework, after my launch screen loads instead of seeing my root Navigation Controller, the screen is black. Once I remove the…
tombornal
  • 65
  • 1
  • 1
  • 7
0
votes
1 answer

How to add buttons to a parent UINavigationController from a linked storyboard scene?

My setup In a main storyboard i'm using a SWRevealViewController for a sidebar with links to different sections. Each section is represented in a separated storyboard linked in the main storyboard with RBStoryboardLink. If in the child storyboards i…
BuguiBu
  • 1,507
  • 1
  • 13
  • 18
0
votes
1 answer

SWRevealViewController from one controller to another

I'm working with SWRevealViewController to have a side menu on an application. It works as expected from the side menu to a controller. What I'd like to do now is use SWRevealViewController again from one controller to another (both…
j.grima
  • 1,831
  • 3
  • 23
  • 45
0
votes
1 answer

SWRevealViewController and UINavigationControllers

Ok, I'll start off without pasting code because I suspect my problem is conceptual regarding the use of SWrevealVC. I have the following storyboard: The frontView flow starts with a Navigation Control and works like a charm, the problem is the rear…