SplitView 控制器菜单覆盖

发布于 2024-09-18 18:53:35 字数 403 浏览 7 评论 0原文

我正在尝试在 iPad 的分割视图应用程序之上创建一个菜单覆盖系统。菜单覆盖系统应该支持几个按钮,其中一个按钮将使覆盖消失并显示 SplitViewController。

我的应用程序委托如下:

UIView *view = [[UIView alloc] init];
[view addSubview:[splitViewController view]];
[view addSubview:[mainMenu view]];
[window addSubview:view];
[window makeKeyAndVisible];

UIView 正在显示,但以一种非常奇怪的分散方式显示,许多界面功能没有响应。

有什么帮助吗?

谢谢,

CSwat

I'm trying to create a menu overlay system on top of a split view application for the iPad. The menu overlay systems is suppose to support a few buttons, one of which will make the overlay disappear and show the SplitViewController.

My application delegate is as follows:

UIView *view = [[UIView alloc] init];
[view addSubview:[splitViewController view]];
[view addSubview:[mainMenu view]];
[window addSubview:view];
[window makeKeyAndVisible];

The UIViews are showing up, but in a very weird scattered manner with many interface features not responding.

Any help?

Thanks,

CSwat

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

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

发布评论

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

评论(1

南街女流氓 2024-09-25 18:53:35

想通了。 UIWindow 无法处理多个视图。您需要添加一个视图,在适当的时候使用 [myView.removeFromSuperview] 将其删除,然后添加下一个视图。

Figured it out. UIWindow cannot handle multiple views. You need to add one view, remove it with [myView.removeFromSuperview] when appropriate, and add the next view.

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