Blame view
App/commons/VCContainerFullScreen.swift
501 Bytes
|
d774f0637
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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
}
}
|