VCContainerFullScreen.swift 501 Bytes
import UIKit
import Foundation

class VCContainerFullScreen: UIViewController, IContainerController {
    var currentViewController: UIViewController?

//    static func openController(_ viewController: UIViewController) {
//        let vcOpen = VCContainerFullScreen()
//        viewController.present(vcOpen, animated: true, completion: nil)
//    }

    func getContainerview() -> UIView{
        return self.view
    }

    override var prefersStatusBarHidden : Bool {
        return true
    }
}