Leang
Leang

Reputation: 160

How to move viewcontroller to front?

I want to move PlayVideoViewController to the top of other view controllers like the picture. Please help!!!!!

enter image description here

Upvotes: 1

Views: 1737

Answers (1)

Ramandeep Singh Gosal
Ramandeep Singh Gosal

Reputation: 448

You could add a new view controller and set it as a child view controller. You can create a container view in which that controller will be added.

self.childViewControllers.first?.view.removeFromSuperview()
self.childViewControllers.first?.removeFromParentViewController()
self.containerView.addSubview(controller.view)
self.addChildViewController(controller)

Do remember to add a container view

Upvotes: 2

Related Questions