0

I have simple SearchViewController with menu button at the top left corner.

Using SVRevealViewController I automatically setup front view controller.

enter image description here

It works and looks like this:

enter image description here

but later on action from this controller I load this controller once again using sth like this:

revealViewController().setFrontViewController(UIStoryboard(name: "Search", bundle: nil).instantiateInitialViewController(), animated: true)

and then it looks like following:

enter image description here

and this is wrong. Why it happens like that?

My Search.storyboard is a PageViewController with two types of pages. First of them is my SearchViewController:

enter image description here

Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358

1 Answers1

0

Just use pushFrontViewController instead of setFrontViewController.

P. Pawluś
  • 298
  • 6
  • 17