我在哪里可以将我的应用程序使用的窗口从 UIWindow 更改为我自己的子类“MyWindow”与故事板?
我这里有一个带有故事板的通用项目。我创建了一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用故事板时,应用程序委托和主窗口不再在 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.