作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在呈现一个 UIViewController
模态,呈现样式为 Form Sheet,当它显示为 Form Sheet 时它没有锁定方向。在 iPhone 6+ 横向显示或在 iPad 上以任意旋转显示时,表单模式呈现样式看起来不同。
我正在通过 Storyboard转场展示 VC
此相同的代码在 iPhone(6+ 除外)的锁定方向上正常工作,但在样式为表单时不起作用。如何在 iPad 或 iPhone 6+ 上以纵向锁定模态表单?
override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
return .Portrait
}
override func shouldAutorotate() -> Bool {
return false
}
override func preferredInterfaceOrientationForPresentation() -> UIInterfaceOrientation {
return .Portrait
}
最佳答案
这段代码对我有用,希望对你也有用
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let val = UIInterfaceOrientation.Portrait;
UIDevice .currentDevice() .setValue(val, forKey: "orientation");
}
override func shouldAutorotateToInterfaceOrientation(toInterfaceOrientation: UIInterfaceOrientation) -> Bool {
return (toInterfaceOrientation == UIInterfaceOrientation.Portrait)
}
override func shouldAutorotate() -> Bool {
return false
}
关于ios - 如何锁定显示为模态表单的 UIViewController 上的旋转?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36407112/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!