Xcode 在应用程序加载时运行 IBAction

发布于 2024-10-18 05:52:17 字数 176 浏览 1 评论 0原文

我想在应用程序加载之前隐藏一个窗口。现在我知道要隐藏一个窗口,你可以使用它;

[window2 orderOut:nil];

当您单击按钮时效果很好,但是如果我不想在应用程序加载之前或加载期间隐藏它怎么办?

所以在应用程序加载时需要一个 IBAction

I would like to hide a window before the app has loaded. Now I know to hide a window you can use this;

[window2 orderOut:nil];

which works fine when you click on a button but what if I wont it to be hidden before or whilst the application has loaded?

So sorta need an IBAction on when the application loads

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

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

发布评论

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

评论(1

战皆罪 2024-10-25 05:52:17

在 Interface Builder 中,您可以取消选中在启动时显示窗口的框(在窗口的属性窗格中)。

或者,您可以将该行代码放入应用程序委托的 applicationWillFinishLaunching (或者可能 applicationDidFinishLaunching)方法中。 (我不确定,第一个可能不起作用。)

但我个人会选择第一个选项。

In Interface Builder, you can uncheck the box (in the window's attributes pane) that says to show the window at startup.

Or you can put that line of code in your app delegate's applicationWillFinishLaunching (or perhaps applicationDidFinishLaunching) method. (Might not work in the first one, I'm not sure.)

But I'd go with the first option, personally.

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