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

Using UIPageView images to open ViewController w/ NavigationController

I am trying to make three images in a UIPageView to open three different NavigationController. Here is my layout as of right now. I connected three Custom Segue to each NavigationController and under ContentViewController, I added the following…
wlmrlsda
  • 163
  • 1
  • 2
  • 13
0
votes
0 answers

Open ViewController With SWReveal Gesture from AppDelegate

I am developing an iOS app and using storyboards. In my storyboard, I had set a SWRevealViewcontroller and it works fine. Now i have a new requirement, and i need to present a viewcontroller, which is an option from the rear_vc in the reveal from my…
Steve
  • 959
  • 1
  • 11
  • 23
0
votes
1 answer

(Swift, Xcode) How to prevent reloading of ViewController when segue back from SWRevealController?

I am using SWRevealController and 4 viewControllers. How can I make it so that the viewControllers only load once and switching back to them using SWReveal won't reload them?
0
votes
1 answer

(Swift) Putting a NSNotificationCenter observer in ViewDidLoad isn't working for my project... Where should I put it?

I'm using SWRevealController to display 3 (left, center, right) panels. Basically, the right panel is a tableview of numbers and the middle panel shows possible even divisions when a user clicks on a number. I connected a segue to the IBAction of a…
0
votes
1 answer

Create a dynamically sized table

I want to create a dynamic list just like the one in Slack, specifically the Channels, which updates with which channels you're a part of: However, I have no idea where to start. While I'm using the SWRevealViewController Library, it only has a…
user4073801
0
votes
2 answers

Implementing A Home button in SWReavealViewController

I am using an SWRevealViewController and one of the Contents of the cell is called "Home". The rest of the contents go to another VieController, but the Home button should take the App to the First ViewController. I tried [self.navigationController…
Sidharth J Dev
  • 927
  • 1
  • 6
  • 25
0
votes
1 answer

SWRevealViewController & UISearchController --- Tableview gone

I am currently programming an app that uses SWRevealViewController. The frontViewController comprises of a navigation bar with a search bar in it as well as a table view that gets filtered by this search bar (UISearchController/UISearchBar). The…
0
votes
2 answers

How to pop back viewController from SWRevealViewController?

In my app after pressing the login button in my loginViewController, it push to front viewController of my SWRevealViewController. In my RearViewController I have the sign out button. When I press it it should pop to the back viewController again…
IRD
  • 1,127
  • 2
  • 8
  • 15
0
votes
1 answer

How to add a tabbar to the frontview controller of SWRevealViewController

I am using SWRevealViewController for my side menu. and it works fine. But now what I want to do is add tab bar to the bottom, Remove the menu button from the navigation bar, and add it as the first item of the tabbar. When click on the first tab…
IRD
  • 1,127
  • 2
  • 8
  • 15
0
votes
1 answer

SWRevealViewController make sidebar button static & make the rearView appear on top of the frontView

Is there any way to make the rearView appear on top of the frontView as below image in storyboard using Objective-C. I want to make the Front View navigation Fixed & make sidebar button static.
Nischal Hada
  • 3,230
  • 3
  • 27
  • 57
0
votes
1 answer

how can i place swrevealview as a third view controller,if we make swrevealview as a initial view controller its working

this code is for the item button.if we click it this code have to run but for me not entered into it while i make it as a third view controller. if ( revealViewController ) { [self.sidebarbutton setTarget:…
0
votes
1 answer

SWRevealViewController - How can I make the menu disappear with a tap and/or swipe on FrontViewController

I am developing a locator map. How can I make the menu disappear with a tap and/or swipe on FrontViewController. My front view controller displays a Map (Google Map).
thedansaps
  • 611
  • 3
  • 10
  • 18
0
votes
1 answer

Custom segue animations using SWRevealViewController

I'm using SWRevealViewController for the main menu on my app. For one menu item I have several UIViewControllers each with their own UINavigationController. in each view I have bottom Tool bar buttons that show(push) to each view. Currently the…
Al Martin
  • 179
  • 3
  • 15
0
votes
1 answer

UIImagePickerController crashes on cancelling second time

I am using UIImagePickerController in my app and it crashes whenever I click on cancel for 2nd time and shows following crash log : Terminating app due to uncaught exception 'UIViewControllerHierarchyInconsistency', reason: 'child view …
0
votes
1 answer

programatically loading controllers using SWRevealViewController and Swift

I am using SWRevealViewController in Swift and have built a dynamic UITableView for the left side navigation to load menu options. Based on the didSelectRowAtIndexPath that the user selects, I then attempt to load the new ViewController using …
Anthony
  • 720
  • 1
  • 6
  • 24