VCContainerFullScreen.swift 662 Bytes
import UIKit
import Foundation
import GeneralUtils

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
    }

    override open var supportedInterfaceOrientations: UIInterfaceOrientationMask {
        return UIInterfaceOrientationMask.portrait
    }
}