Reputation: 160
I want to move PlayVideoViewController to the top of other view controllers like the picture. Please help!!!!!
Upvotes: 1
Views: 1737
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