作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何确保不支持 UIInterfaceOrientationPortraitRight 和 UIInterfaceOrientationPortraitLeft。
基本上我希望我的应用程序仅在 UIInterfaceOrientationLandscapeRight 和 UIInterfaceOrientationLandscapeLeft 中使用
我编辑了 Info.plist 文件
<string>MainWindow</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
最佳答案
确保在每个 UIViewController
/UITabBarController
等中,在 shouldAutoRotateToInterfaceOrientation
中,返回内容为 return ((interfaceOrientation = = UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight))
;.
关于iphone - 我只想支持 UIInterfaceOrientationLandscapeRight 和 UIInterfaceOrientationLandscapeLeft,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2647607/
我目前在我的 master 分支上。我需要 CSS 方面的帮助,但不幸的是我的网站受身份验证保护。这使得其他人很难来我的站点进行调试。我计划开始一个新的分支,fixing_css,第一次提交删除所有身
我是一名优秀的程序员,十分优秀!