修复应用恢复执行后的通知中心方向

Posted

技术标签:

【中文标题】修复应用恢复执行后的通知中心方向【英文标题】:Fix Notification center orientation after the app resume execution 【发布时间】:2012-07-03 15:32:02 【问题描述】:

我有一个仅在横向模式下显示的视图,并且运行良好。但是如果您将应用程序发送到后台然后恢复它,通知中心将出现在您恢复应用程序时设备的方向(通常是纵向模式),所以当我检测到从左到右滑动时,有时通知中心会出现。有什么想法可以让系统知道它应该以横向模式显示通知中心吗?

编辑:视图应以横向模式显示,问题仅出在通知中心。

【问题讨论】:

【参考方案1】:

设置状态栏方向设置应用程序方向。警报、NotificationCenter 它们都使用 [UIApplication sharedApplication].statusbarOrientation 作为 方向。

-(BOOL)shouldAutorotateToInterfaceOrientation 应该为您完成这一切,但如果正如您所说的那样,您可以自己设置方向。

【讨论】:

【参考方案2】:

您可以在shouldAutorotateToInterfaceOrientation 方法中以编程方式停止启用纵向模式,以下代码是您的操作方式:

 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

    if (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
        return YES;
    
    else 
        return NO;
    


【讨论】:

我已经这样做了,横向模式下视图可以正确显示,但是通知中心不会。 实际上,仅使用这一行更容易做到这一点:return UIInterfaceOrientationIsLandscape(interfaceOrientation); 啊,我的错,它在你的第一行。

以上是关于修复应用恢复执行后的通知中心方向的主要内容,如果未能解决你的问题,请参考以下文章

为 iOS 5 通知中心设置应用默认值

将通知模板从应用后端注册到 Azure 通知中心

通知中心 - NSNotificationCenter

应用打开后从通知中心移除推送

iOS:判断通知中心是不是有通知

本地通知默认不显示在通知中心