这个问题应该是一个简单的问题......我已经搜索了很多关于它的内容,并且我已经尝试了我项目中的所有设置。问题是我正在做一个不属于我的项目。该应用程序从应用程序委托启动,然后我添加了一个UIViewController
(没有 XIB 文件)所有由代码完成的操作。ViewController 实际上是在横向上,但问题是应用程序在纵向上运行(当我拉动通知视图时,它会像在纵向模式下一样向下)。
这是在 AppDelegate.m 文件中实现的:
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationLandscapeRight;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskLandscapeRight|UIInterfaceOrientationMaskLandscapeLeft|UIInterfaceOrientationMaskPortrait;
//if i am writing only the landscape right orientation the app crashes!
}
*终止应用程序由于未捕获的异常“UIApplicationInvalidInterfaceOrientation”,理由是:“支持方向已与应用程序中没有共同的方向,并shouldAutorotate将返回YES” *第一掷调用堆栈:(0x3bfef2a3 0x35ede97f 0x3bfef1c5 0x3518988f 0x3532e579 0x3520dd3d 0x3520cfc7 0x3532f257 0xa5bc1 0x35188319 0x351a4f0f 0x351a4e97 0x3512aa33 0x3bfc46cd 0x3bfc29c1 0x3bfc2d17 0x3bf35ebd 0x3bf35d49 0x3a3032eb 0x351752f9 0x9803b 0x97fe0) libc++abi.dylib:终止调用抛出异常
如果我用应用程序启动的纵向模式编写它。我还尝试在其中添加行info.plist
并将初始界面方向值的键设置为横向(右主页按钮)。还将支持的界面方向也放在 lanscape 中。这并没有改变任何东西,我只想知道如何获得该行为以在横向模式下从上方获取通知
任何人,谢谢!