Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and [QYCGuangViewController should

今天在写项目的时候有一个功能是要求到下一个界面的时候【向右横屏】,然后就在要求横屏VC中写下面代码

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

{

//    [self _initSubViews];//创建控件

//    [self setImage:[UIImage imageWithData:self.dataImage]];//传图片

    return UIInterfaceOrientationMaskLandscape;


}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation

{


    return UIInterfaceOrientationLandscapeRight;


}

结果崩溃了

*** Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and [QYCGuangViewController shouldAutorotate] is returning YES'

仔细一看一想原来是我没有选择让横屏:


勾选这个在运行就好了


问题解决

你可能感兴趣的:(Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and [QYCGuangViewController should)