CNLivePlayerLandscapeViewController.swift
719 Bytes
//
// CNLivePlayerLandscapeViewController.swift
// metaCode
//
// Created by zx on 2023/11/28.
//
import Foundation
class CNLivePlayerLandscapeViewController:CNLiveBaseViewController{
var interfaceOrientationMask: UIInterfaceOrientationMask?
override func viewDidLoad() {
super.viewDidLoad()
self.topNavView.removeFromSuperview()
}
// MARK: - 屏幕旋转
// -(BOOL)shouldAutorotate
// {
// return YES;
// }
// -(UIInterfaceOrientationMask)supportedInterfaceOrientations
// {
// if (self.interfaceOrientationMask) {
// return self.interfaceOrientationMask;
// }
// return UIInterfaceOrientationMaskLandscape;
// }
}