以编程方式使下载停靠栏图标弹起

发布于 2024-12-19 03:28:10 字数 145 浏览 1 评论 0原文

如何以编程方式使 Dock“下载”图标弹起?
请注意,我不希望我的应用程序图标弹起,而只希望下载图标弹起。

特别是,我正在将文件从我的应用程序下载到“下载”文件夹。这没问题,但我希望下载图标在下载完成时弹起(就像 Safari 完成下载时发生的那样)。

How can I make the dock Downloads icon bounce programmatically?
Notice that I don't want my app icon to bounce, but only Downloads' icon.

In particular, I'm downloading a file from my app to Downloads folder. No problem with this, but I want the Downloads icon to bounce when the download is finished (as happen when Safari completes a download).

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

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

发布评论

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

评论(1

挥剑断情 2024-12-26 03:28:10

快速谷歌搜索出现

[[NSDistributedNotificationCenter defaultCenter]
        postNotificationName:@"com.apple.DownloadFileFinished"
        object:pathToFile];

http://iloveco.de/quick-trick-bouncing-the- downloads-stack/

我认为知道要搜索什么的技巧是知道 Dock 中的文件夹已被称为 “堆栈” 自 10.5 起。

A quick Google search turns up

[[NSDistributedNotificationCenter defaultCenter]
        postNotificationName:@"com.apple.DownloadFileFinished"
        object:pathToFile];

from http://iloveco.de/quick-trick-bouncing-the-downloads-stack/

I think the trick for knowing what to search for was knowing that the folders in the Dock have been called "Stacks" since 10.5.

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