如何在Cocoa中为同一个窗口创建多个视图?

发布于 2024-12-04 06:33:22 字数 174 浏览 1 评论 0原文

我的应用程序有一个应用程序委托和一个窗口。我有不同的类运行线程等。当我发送 NSWindow *window 指针到该类或函数,并尝试更改 VIew 时,[window setcontentView//something]。它不显示任何内容,我做错了什么?拥有一个窗口和不同的类,并从不同的类更改该窗口的内容的最简单方法是什么。谢谢。

I have application that has one Application delegate, and one Window. I have different classes that running threads, etc. When I'm sending NSWindow *window pointer to that classes or function, and trying to change VIew , [window setcontentView//something]. It doesn't display anything ,what I am doing wrong ? What is the easiest way to have one window, and different classes, and change that Content for that window, from different classes. Thanks.

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

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

发布评论

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

评论(1

计㈡愣 2024-12-11 06:33:22

首先,您应该实现 UIApplicationDelegate 方法 didFinishLaunchingWithOptions ,如下所示:

MainViewController *mainController = [[[MainViewController alloc] initWithNibName:@"MainView" bundle:nil] autorelease];
navigationController = [[UINavigationController alloc] initWithRootViewController:mainController];
navigationController.navigationBar.hidden = YES;
[self.window addSubview:navigationController.view];
[self.window makeKeyAndVisible];

稍后您可以创建不同的 UIViewController 实例并将它们推送到 UINavigationController 对象。

At first you should implement your UIApplicationDelegate method didFinishLaunchingWithOptions something like this:

MainViewController *mainController = [[[MainViewController alloc] initWithNibName:@"MainView" bundle:nil] autorelease];
navigationController = [[UINavigationController alloc] initWithRootViewController:mainController];
navigationController.navigationBar.hidden = YES;
[self.window addSubview:navigationController.view];
[self.window makeKeyAndVisible];

Later you can create different UIViewController instances and push them to UINavigationController object.

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