MFMailComposeViewController 在 iPad 上强制纵向

Posted

技术标签:

【中文标题】MFMailComposeViewController 在 iPad 上强制纵向【英文标题】:MFMailComposeViewController forces Portrait Orientation on iPad 【发布时间】:2011-01-18 08:01:28 【问题描述】:

我在应用程序电子邮件中使用 MFMailComposeViewController,它在纵向模式下工作正常。但是当我支持两种方向的应用程序处于横向模式时, 使用 [self presentModalViewController:mailVC animated:YES];

强制我的整个应用进入我不想要的纵向模式。

我已经尝试了很多事情,包括覆盖 MFMailComposeViewController shouldAutorotateToInterfaceOrientation: 方法、辞职第一响应者等等,但运气不佳。

如何让 MFMailComposeViewController 在 iPad 上的 Landscape 中工作?

【问题讨论】:

【参考方案1】:

我遇到了同样的问题并尝试覆盖,但这对我没有帮助。

尝试将“presentModalViewController:”发送到应用程序窗口的 rootViewController(在 AppDelegate 中)。

我认为这对我有用,因为 MFMailComposeViewController 不能强制 rootViewController 方向,但可以强制由 rootViewController 的 navigationController 推送的 viewController 的方向。

你需要这样的东西:

    [((AppDelegate *)[UIApplication sharedApplication]).window.rootViewController presentViewController:mailVC animated:YES completion:nil];

【讨论】:

【参考方案2】:

尝试覆盖自动旋转功能:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) ||
            (interfaceOrientation == UIInterfaceOrientationLandscapeRight));

或者,从 UIViewController 中显示 MFMailComposeViewController,它管理您的应用内的旋转。

【讨论】:

以上是关于MFMailComposeViewController 在 iPad 上强制纵向的主要内容,如果未能解决你的问题,请参考以下文章