美文网首页
Terminating app due to uncaught

Terminating app due to uncaught

作者: 笙笔记 | 来源:发表于2018-03-30 10:10 被阅读0次

今天在写项目的时候有一个功能是要求到下一个界面的时候【向右横屏】,然后就在要求横屏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

      本文链接:https://www.haomeiwen.com/subject/olvbcftx.html