使文档窗口居中

发布于 2024-11-06 14:52:19 字数 243 浏览 6 评论 0原文

我正在编写一个基于核心数据、文档的应用程序。我正在尝试将文档窗口居中。我尝试从文档的 makeWindowControllers 方法、窗口控制器的 awakeFromNib 方法和窗口控制器的 showWindows 方法调用以下代码。我的窗口始终得到零结果。有什么想法吗?谢谢。

NSWindow *myWindow = [myWindowController window];
[myWindow center];

I am writing a core data, document based app. I am trying to center the document's window. I have tried calling the following code from the document's makeWindowControllers method, from the window controller's awakeFromNib method and from the window controller's showWindows method. I keep getting a nil result for myWindow. Any ideas? Thank you.

NSWindow *myWindow = [myWindowController window];
[myWindow center];

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

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

发布评论

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

评论(1

音盲 2024-11-13 14:52:19

-window 返回 nil 的一个常见原因是没有在 nib 文件中设置相应的出口。

确保 nib 文件的所有者是您的 NSWindowController 子类,并且其 window 出口已链接到 window 对象。

A common reason for -window to return nil is not having set the corresponding outlet in the nib file.

Make sure the nib file’s owner is your NSWindowController subclass and its window outlet has been linked to the window object.

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