本文介绍了NSWorkspace SetIcon不更新El Capitan上的应用程序图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用NSWorkSpace SetIcon:forFile:options:更改应用程序图标.在优胜美地,它工作正常.但是,在El Capitan上,应用程序图标未更新.

I am using NSWorkSpace SetIcon:forFile:options: for changing application icon. On Yosemite it is working fine. However on El Capitan application icon is not updating.

推荐答案

您并不孤单.尝试先设置nil图标,然后再设置图标:

You are not alone.Try to set nil icon first and then your icon:

[[NSWorkspace sharedWorkspace] setIcon:nil forFile:path options:0]
[[NSWorkspace sharedWorkspace] setIcon:image forFile:path options:0];

这篇关于NSWorkspace SetIcon不更新El Capitan上的应用程序图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 05:37