单击时重绘可可应用程序的主窗口

发布于 2024-10-19 12:47:50 字数 255 浏览 1 评论 0原文

我制作了一个 Mac OS X cocoa 应用程序,当我单击红色按钮时,主窗口消失。

在此处输入图像描述

但是,当我单击停靠栏中的图标时,它不再显示主窗口。

在此处输入图像描述

出了什么问题?如何通过捕获什么消息来重绘主窗口?

I made an Mac OS X cocoa app, and when I click the red button the main window disappears.

enter image description here

However, when I clicked the icon in dock, it doesn't show the main window anymore.

enter image description here

What's wrong? How do i redraw the main window by catching what message?

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

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

发布评论

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

评论(1

只涨不跌 2024-10-26 12:47:50

您也许可以在应用程序委托中执行类似的操作:

- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender {
    //show your window here
    return NO;
}

You might be able to do something like this in your application delegate:

- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender {
    //show your window here
    return NO;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文