Blame view
App/commons/VCContainerFullScreen.swift
662 Bytes
d774f0637
|
1 2 |
import UIKit import Foundation |
1341bf603
|
3 |
import GeneralUtils |
d774f0637
|
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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 } |
1341bf603
|
20 21 22 23 |
override open var supportedInterfaceOrientations: UIInterfaceOrientationMask { return UIInterfaceOrientationMask.portrait } |
d774f0637
|
24 |
} |