提问人:MastIos 提问时间:11/27/2019 更新时间:11/27/2019 访问量:52
返回 viewController 方向。迅速
Return viewController orientation. Swift
问:
在应用程序中,我只有纵向。 但有一个视图具有横向方向。
问题是它们都是通过 NavigationController 连接的。当我从视图返回时,从横向到纵向的方向没有改变。
如何修复NavigationController的关闭方法?
应用委托.swift
var orientationLock = UIInterfaceOrientationMask.portrait
var myOrientation: UIInterfaceOrientationMask = .portrait
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
return myOrientation
}
landscapeView.sift(景观视图.sift)
import UIKit
class SchemeView: UIViewController {
let appDel = UIApplication.shared.delegate as! AppDelegate
override func viewDidLoad() {
super.viewDidLoad()
appDel.myOrientation = .landscape
UIDevice.current.setValue(UIInterfaceOrientation.landscapeLeft.rawValue, forKey: "orientation")
}
//does not work
override func dismiss(animated flag: Bool, completion: (() -> Void)? = nil) {
appDel.myOrientation = .portrait
UIDevice.current.setValue(UIInterfaceOrientation.portrait.rawValue, forKey: "orientation")
}
}
答:
0赞
MastIos
11/27/2019
#1
我使用以下方法为自己决定了一切
override func viewWillDisappear(_ animated: Bool) {
appDel.myOrientation = .portrait
UIDevice.current.setValue(UIInterfaceOrientation.portrait.rawValue, forKey: "orientation")
}
评论