自动旋转模态视图

发布于 2024-11-29 22:13:53 字数 79 浏览 1 评论 0原文

我在纵向模式下创建了一个模态视图。当它处于横向模式时,它不旋转。 如何在 splitViewController 中将模态视图从纵向旋转为横向?

I have created a modal view in Portrait mode. when it is in lanscape mode it is not rotating.
How to rotate a modal view from Portrait to Lanscape in splitViewController?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

总攻大人 2024-12-06 22:13:53

我有类似的问题。模态视图是从 DetailViewController 加载的,当 iPad 旋转时,模态视图会从视图中完全消失。

我最接近的修复方法是,在旋转后,检查是否加载了模态视图,然后重新加载它,如下所示:

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
    if(self.modalViewController)
        [self.modalViewController.view.window reloadInputViews];
}

I have a similar problem. The modal view is loaded from the DetailViewController, and when the iPad is rotated, the modal view disappears from view completely.

The closest I've come to a fix is, after rotating, to check whether a modal view was loaded, and then reload it, like so:

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
    if(self.modalViewController)
        [self.modalViewController.view.window reloadInputViews];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文