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

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

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