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

Pop SWRevealViewController

I'm using SWRevealViewController to build a sliding menu. Before accessing the menu, a login view is displayed to allow the user login. Now i want to let the user disconnect and display the login view again. My question is how to pop the…
0
votes
1 answer

SWRevealViewController: animate a nav bar icon when triggering a reveal

This question references the excellent SWRevealViewController library. I have a simple implementation of a homeVC (front) and a menuVC (rear). Both VCs are imbedded in navigation controllers. I use a standard "hamburger" UIBarButtonItem to trigger…
Chris Holloway
  • 247
  • 3
  • 10
0
votes
1 answer

SWRevealViewController hides tab bar controller

I am using SWRevealViewController and tab bar view controller. A table view is hooked to the back of the tab bar. If I select any of the cells,the view transitions to the correct view but my tab bar buttons disappear. This is the hierarchy of the…
0
votes
1 answer

How to Set SwRevealview controller as Root view controller

I am using SwReveal view controller.It is initially set as root view controller. I am using a Login screen when app logged in I remember the user name and next time when the app is opened i set a main screen as Root view controller. But here where…
iworld
  • 345
  • 1
  • 4
  • 17
0
votes
0 answers

SWRevealView Library, main view should not be accessible after side bar is opened

I am using SWRevealViewController library for making side bar menu in IOS from the link http://www.appcoda.com/ios-programming-sidebar-navigation-menu/ The problem is that when the sidebar menu is opened I don't want the user to access the main view…
person
  • 123
  • 8
0
votes
1 answer

SWRevealViewController with storyboard hiding keyboard when swiped

SWRevealViewController dismiss keyboard on swipe Problem is the same but this answers does not help me. There are some solutions in the given link.For example I don't have any #if macros to delete and I get an error when I write…
Okhan Okbay
  • 1,374
  • 12
  • 26
0
votes
2 answers

UI not updating on SWRevealViewController viewWillAppear

I'm currently using SWRevealController for my slide-out navigation. The issue I'm having is that my label isn't properly updating based on changes via the backend. I figured it would update with new data every time the menu is slide out considering…
James
  • 201
  • 4
  • 13
0
votes
1 answer

Xcode Navigation controller bar color change

I am using SWRevealcontroller. I am trying to change the color of the navigation bar depending on the selection of the view. It will only stay the same color of the initial bar color. Any help guys? iOS7
0
votes
0 answers

Load LoginViewController before SWRevealViewController

I'm trying to create a view which have a side-window menu using SWRevealViewController. In the menu, I need to load UserID from LoginViewController and load the user name and photo in it. I used NSUserDefault for this. The problem is, whenever I…
Edward
  • 107
  • 2
  • 10
0
votes
1 answer

Remove RevealViewController PanGestureRecognizer from Login Screen

I have implemented SidebarDemo project from Appcode and then modified Storyboard with Login screen, now when I start my application Login Screen come which is correct and I dont want Pan Gesture on Login screen and I am trying to remove it from code…
0
votes
1 answer

SWreveal dismiss rear view

I have a project that is using the SWReveal controller, however, when the user selects an item from the menu all the app is doing is refreshing the data on the front view controller meaning that a new view controller is never called so the rear view…
0
votes
1 answer

passing data from FirstViewController to FrontViewController of SWRevealViewController

sorry for my bad English i need to pass data from my First View Controller to Front View Controller of SWRevealViewController in my First View Controller i do this code - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if…
0
votes
1 answer

How to get back the existing view

I am using a SWreveal view controller whichs displays a list in a table view. I call this from View Controller A when user uses a gesture. When i select a row in the table view. View controller A is created again and displayed instead of showing the…
0
votes
1 answer

Collection view goes Null

I am working an an app where i have a collection view(Parent view) and a SWReveal'stable view. when i select a row in table view and close the the Swreveal view controller. IN parent view all the datas are available except the collection view..…
0
votes
1 answer

can i set uitableviewcell font to custom

I'm trying to set 'cell.textLabel.font = [UIFont fontWithName:@"Xiomara" size:15];' but nothing happens. I've already added this font to the project and everyware except cell, I can use it. Also I use SWRevealViewController and this table view is a…
lhawks
  • 43
  • 10