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
1 answer

swift - embedded SWRevealViewController to you application

I intergrade SWRevealViewController to my project my project flow is viewcontroller ---> SWRevealViewController -->menu --> nav-->front view the segue method from my initial…
Mina Fawzy
  • 20,852
  • 17
  • 133
  • 156
0
votes
1 answer

iOS: Go back to entry point view controller which is not part of navigation controller

I have a login view controller which is outside my navigation controller. When a user logs out, I want them to be back to the login view controller. I am using SWRevealViewController and Storyboards. User Flow: -> Login View Controller ->…
Asif Alamgir
  • 1,454
  • 1
  • 16
  • 41
0
votes
1 answer

Accessing item of a navigationController childview in swift

newbie to ios app coding here so any help would greatly be appreciated. I have an app that when rotated to landscape opens a side menu automatically and I need it to disable the menu button in the child view of the navigationController. Here's my…
0
votes
1 answer

SWRevealViewController won't work after timed launch screen

Please help. I have made a time delay to my launch screen in my AppDelegate. After that my SWRevealViewController menu won't work :-( I have deleted the time delay again, but my SWRevealViewController still won't work.... What can be wrong? -…
Flev40
  • 63
  • 3
0
votes
1 answer

iOS: SWRevealViewController opening WebView control without Navigation bar

The app has a navigation bar that is included in all the scenes within the app. SWRevealViewController has been used to create a slide out menu, also appearing in all scenes. It contains a tableview that initiates the segues to other scenes. Two of…
tonyony
  • 15
  • 5
0
votes
1 answer

Swift SWRevealViewController Menu not showing after segue back to certain page

I used the tutorial from AppCoda to implement the SWRevealViewController into my swift project. Everything in the tutorial works! But, there is a bug that I don't know how to fix: I can navigate through the pages connected to my SideBarTableView,…
David
  • 1
  • 2
0
votes
1 answer

Change title of navigation controller from second view controller?

I have a view controller which has embedded a navigation controller. From this view controller I am being able to change the title of the navigation bar with navigationItem.title = "title". Furthermore I have another tableview controller and I…
0
votes
1 answer

Cannot edit search bar width and x y coordinate in `UITableViewController`

I am useing the swreveal to do the slide menu which i want to add search bar in it. However, the search bar has been covered by the parent view. slide_areaWidth = self.revealViewController().rightViewRevealWidth searchBar = …
Jacky Shek
  • 953
  • 1
  • 11
  • 35
0
votes
1 answer

Running project doesnot show the menu after files copied to another project while using SWRevealViewController

This is my second question on the same topic. Swipeout Menu not working while using SWReveal Library I didn't figure out the error but knew that when i copy the running project files(class files,storyboard) and paste to the new project.The running…
user4790024
0
votes
2 answers

Showing the same UIBarButtonItem on many views

I have a problem in my iOS application that I'm looking for some help with. I'm relatively new to iOS programming to I'm sure that there is some relatively simple solution to my problem. First, I'm going to explain the hierarchy of the…
Joakim
  • 3,224
  • 3
  • 29
  • 53
0
votes
2 answers

iOS: TableView interfering with top status bar

I'm developing an iOS application and i'm using the SWRevealViewController, i made the side-menu by adding a TableView and everything works fine, but when i open the side-menu and scroll down, the contents(cells) are interfering with the iPhone top…
ANA
  • 282
  • 2
  • 16
0
votes
1 answer

iOS SWReveal sidebar with links to Detail Segue

My iOS application is based on John-Lluch's SWRevealViewController to get sidebar navigation. I have ran into a navigation problem that I don't know how to solve. I want one of the menu items to lead to a page that doesn't contain a sidebar but a…
0
votes
1 answer

SWRevealViewController rearViewRevealWidth

I'm tryng to change the width of menu view controller (rear), with code: SWRevealViewController *revealController = [self revealViewController]; revealController.rearViewRevealWidth = 300.0f; but it work after 2 clicks of menu (menu opened 2…
Giulio
  • 221
  • 2
  • 15
0
votes
3 answers

push view error in SWRevealViewController

I use SWRevealViewController in root view and make custom static view with two button in custom class. If I click button - push nextView controller from custom custom class UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"Main"…
0
votes
2 answers

How do I remove navigation tab added by SWRevealViewController?

I am using am SWRevealViewController in my iOS 8.2 app. It works perfectly fine, but when my view displays though it a frosted navigation bar hangs around at the top of the screen, under the status bar. It is covering my background image, and I…
eadsjr
  • 681
  • 5
  • 20