我似乎无法让 cancelUserAttentionRequest 工作。我有以下...
.mm 文件
void SetNotify()
{
this->notify = [NSApp requestUserAttention:NSCriticalRequest];
}
void RemoveNotify()
{
if (!this->notify) {
return;
}
[NSApp cancelUserAttentionRequest:this->notify];
}
标题
protected:
int notify;
我正在使用一个计时器来调用 SetNotify,然后是另一个在 5 秒后运行的计时器。图标弹跳得很好,但它不会停止弹跳。我错过了什么吗?