0

Change overlap order for SWRevealViewController

We call home view as front view, and sidebar view as rear view;

My question is, can we change just the overlap, say the sidebar is on top, and the home view is under sidebar? This does not change anything else, just too change the visual effect.

invidicult
  • 306
  • 2
  • 8
  • 19
Wingzero
  • 9,644
  • 10
  • 39
  • 80

1 Answers1

0

In viewController where you need to do this add following line of code.

[self.view bringSubviewToFront:self.sidebarview];

Hope this will help you.

Ganesh
  • 101
  • 1
  • 11