UISplitViewController - 在景观问题中在详细视图控制器上呈现模式视图控制器

发布于 2024-10-13 02:15:53 字数 363 浏览 5 评论 0原文

当我尝试通过以下代码在横向模式下的 UISPlitViewController 的详细视图上显示模式模式下的某些视图时:

UIViewController *controller = ....
controller.modalPresentationStyle = UIModalPresentationPageSheet;
[self.detailedViewController presentModalViewController:controller animated:YES];

...在关闭它之后,详细视图将移动到左侧并隐藏在主视图控制器后面。看起来详细视图的原点转移到主视图的原点(在我的例子中是菜单)? 为什么会发生这种情况?

When I try to show some view in modal mode over the detailed view of the UISPlitViewController in landscape mode by this code:

UIViewController *controller = ....
controller.modalPresentationStyle = UIModalPresentationPageSheet;
[self.detailedViewController presentModalViewController:controller animated:YES];

...after dismissing it, detailed view is moved to the left and hides behind master view controller. It looks like origin of the detailed view shifts to the origin of the master view (menu in my case)?
Why is it happening?

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

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

发布评论

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

评论(1

漫雪独思 2024-10-20 02:15:53

在 SplitViewController 上显示模态视图,而不是在细节上。

Show the modal view over your SplitViewController, not over the detail.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文