- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序是基于横向
的。当应用程序在我的设备上运行时,应用程序立即崩溃。
我选择了这两个字段
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
我收到这个错误:
Terminating app due to uncaught exception UIApplicationInvalidInterfaceOrientation, reason: Supported orientations has no common orientation with the application, and shouldAutorotate is returning YES
最佳答案
将shouldAutorotate 和supportedInterfaceOrientations 方法添加到您的 Controller 。
-(BOOL)shouldAutorotate
{
return YES; //this will auto-rotate the orientation.
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape; // will force the app to load in landscape, you can change it as per your need.
}
关于iphone - 应用程序因 InterfaceOrientation 而崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14100233/
我的应用程序是基于横向 的。当应用程序在我的设备上运行时,应用程序立即崩溃。 我选择了这两个字段 UIInterfaceOrientationLandscapeLeft UIInterfaceOrie
我目前正在使用我的 UIViewController 的 interfaceProperty,它在 iOS 8 中已被弃用。 @property(nonatomic,readonly) UIInter
我收到此错误,但不知道是什么原因造成的。这在 iPhone 和 iPad 上的 iOS 8.2 中都会发生。 Crashed: com.apple.main-thread EXC_BAD_ACCESS
我有一个自定义的 CALayer,它对于不同的界面方向应该看起来不同。有没有一种方法可以访问我使用此 CALayer 的 View Controller 的界面方向? 或者我必须在自定义图层中设置一个
我的应用有四个标签:A、B、C 和 D。它们的 UIViewController 由 UITabBarController 管理。该应用程序支持旋转,因此每个 View Controller 都向 s
既然 UIViewController 中的 interfaceOrientation 属性已弃用,那么检测当前设备方向的推荐方法是什么? 最佳答案 您可以使用[UIApplication share
UIViewController 的 InterfaceOrientation 已弃用,文档建议使用 [[UIApplication sharedApplication] statusBarOrien
如果我有一个指向 UIViewController 的指针,当它改变 interfaceOrientation 时我是否可以在不修改 Controller 代码的情况下得到通知? 我最好的选择是检测设
我正在使用带有 3 个按钮的自定义 tableviewcell。 我在自定义单元格中的 layoutSubviews 方法中设置了按钮的框架: -(void)layoutSubviews {
这不是生死攸关的事情,但我没有运气破解它。谢谢。 if session.canAddInput(videoDeviceInput){ session.addInput(videoDevic
当我在模拟器或设备中测试 4.x 下的单 View 应用程序时,主 UIViewController 的 shouldAutorotateToInterfaceOrientation: 方法在启动时被
我从 Cocoa Controls 下载了一个使用此方法的 simpleCamera View - (AVCaptureVideoOrientation)orientationForConnectio
我是一名优秀的程序员,十分优秀!