gpt4 book ai didi

cocoa - NSAlert 没有弹跳停靠图标

转载 作者:行者123 更新时间:2023-12-03 16:10:32 24 4
gpt4 key购买 nike

如果您在应用程序处于后台时发出 NSAlert,您的 Dock 图标就会开始弹跳,并持续弹跳,直到您切换回来。

我觉得这很烦人。

有谁知道如何为单个应用程序禁用它?

最佳答案

创建您自己的 NSApplication 子类,并实现如下所示的内容:

- (int)requestUserAttention:(NSRequestUserAttentionType)requestType
{
if (dontDoThatBouncyThing) {
return 0;
}
return [super requestUserAttention:requestType];
}

不要忘记将 Info.plist 中的“NSPrincipalClass”从 NSApplication 更改为您自己的 NSApplication 子类。

关于cocoa - NSAlert 没有弹跳停靠图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/295333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com