旋转后更改 modalPresentationStyle

发布于 12-28 08:56 字数 719 浏览 4 评论 0原文

我需要帮助解决问题。我想在旋转事件后打开时动态更改 modalPresentationStyle。 我写这个是为了创建 modalView

 ZUITableViewController *ivc = [[ZUITableViewController alloc] init];
    ivc.delegate = self;
    _modalIsShowing = TRUE;
    UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:ivc];
    if (UIInterfaceOrientationIsLandscape(self.interfaceOrientation))
    {
        nc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
        nc.modalPresentationStyle = UIModalPresentationFormSheet;

    }
    else{
        nc.modalPresentationStyle = UIModalPresentationFullScreen;
    }
    [self presentModalViewController:nc animated:YES];
    [ivc release];
    [nc release];

I need help in problem. I want to change modalPresentationStyle dynamicaly when it open, after rotating event.
I write this for create modalView

 ZUITableViewController *ivc = [[ZUITableViewController alloc] init];
    ivc.delegate = self;
    _modalIsShowing = TRUE;
    UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:ivc];
    if (UIInterfaceOrientationIsLandscape(self.interfaceOrientation))
    {
        nc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
        nc.modalPresentationStyle = UIModalPresentationFormSheet;

    }
    else{
        nc.modalPresentationStyle = UIModalPresentationFullScreen;
    }
    [self presentModalViewController:nc animated:YES];
    [ivc release];
    [nc release];

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

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

发布评论

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

评论(1

如日中天2025-01-04 08:56:47

废弃 if 语句 UIModalPresentationPageSheet 行为正常。

ZUITableViewController *ivc = [[ZUITableViewController alloc] init];
ivc.delegate = self;
_modalIsShowing = TRUE;
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:ivc];
nc.modalPresentationStyle = UIModalPresentationPageSheet;
[self presentModalViewController:nc animated:YES];
[ivc release];
[nc release];

Scrap the if statement UIModalPresentationPageSheet behaves properly to start with.

ZUITableViewController *ivc = [[ZUITableViewController alloc] init];
ivc.delegate = self;
_modalIsShowing = TRUE;
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:ivc];
nc.modalPresentationStyle = UIModalPresentationPageSheet;
[self presentModalViewController:nc animated:YES];
[ivc release];
[nc release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文