gpt4 book ai didi

ios - 在 "Swift3"中可编程设置方向

转载 作者:行者123 更新时间:2023-11-30 12:57:36 26 4
gpt4 key购买 nike

当我编写 swift2 代码时,我确实知道如何修复方向,但是在他们将函数更改为“var”之后,新代码就不起作用了。

这是用于检查的示例 UIViewController 类

class QuizVC: UIViewController{

override func viewDidLoad() {
super.viewDidLoad()

//Quiz scene
self.view.backgroundColor = UIColor(red: 240/255, green: 238/255, blue: 226/255, alpha: 1)//sand fron hu

let testBtn: UIButton = UIButton()//for orientation test
testBtn.setTitle("\" Orientation🍺🍺Check \"", for: .normal)
testBtn.sizeToFit()
testBtn.center = self.view.center
testBtn.titleLabel?.textColor = UIColor.white
testBtn.backgroundColor = UIColor.brown
self.view.addSubview(testBtn)
//Do any additional setup after loading the view, typically from a nib.
}

override var supportedInterfaceOrientations : UIInterfaceOrientationMask {//not working
return UIInterfaceOrientationMask.landscape
}
override var shouldAutorotate: Bool {//not working
return false
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}}

当我运行此代码时,似乎只是忽略了该覆盖。 View 自动旋转,按钮和标签不显示为横向。甚至没有固定。

我还尝试将方向值直接放入变量中,但“supportedInterfaceOrientations”是仅获取属性。当然,旧代码被视为错误,因为不再有名为“supportedInterfaceOrientations()”的函数。仅存在变量。

有人在 Swift3 中尝试过这个吗?

我在 iOS10 上使用 swift3。

最佳答案

  1. 删除 shouldAutorotate
  2. 在(应用设置页面)/常规/设备方向中启用横向

这应该可以正常工作。

关于ios - 在 "Swift3"中可编程设置方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40245792/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com