我在哪里可以将我的应用程序使用的窗口从 UIWindow 更改为我自己的子类“MyWindow”与故事板?

发布于 2024-12-11 11:04:17 字数 210 浏览 0 评论 0原文

我这里有一个带有故事板的通用项目。我创建了一个名为 MyWindow 的 UIWindow 子类,我需要加载它而不是默认的 UIWindow。在故事板之前,我只需转到 XCode 中的 .XIB 文件并将主窗口的类更改为 MyWindow。但是,我无法找到可以在故事板中更改此设置的任何部分。

有谁知道我可以在哪里做到这一点?我需要主窗口来加载 MyWindow,而不是 UIWindow。

I've got a universal project here with storyboard. I've created a subclass of UIWindow called MyWindow, and I need to load it instead of the default UIWindow. Prior to storyboard, I would simply go to the .XIB file in XCode and change the class for the main window to MyWindow. However, I'm unable to find any section where I can change this in storyboard.

Does anyone know where I can do this? I need the main window to load MyWindow, not UIWindow.

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

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

发布评论

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

评论(1

行至春深 2024-12-18 11:04:17

使用故事板时,应用程序委托和主窗口不再在 Interface Builder 中表示。相反,当您的应用程序启动时,系统会向您的应用程序委托查询名为“window”的属性。如果返回 nil,则会为您创建一个 UIWindow 类型的默认窗口。要更改此行为,您需要在应用程序委托中实现“窗口”getter 方法,该方法返回“MyWindow”子类。请参阅 文档

When using storyboards the application delegate and main window are no longer represented in Interface Builder. Instead, when your app starts, your app delegate is queried for a property called 'window'. If this returns nil then a default window of type UIWindow is created for you. To change this behaviour you need to implement a 'window' getter method in your app delegate that returns your 'MyWindow' subclass. See the documentation.

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