本文介绍了如何在macOS系统偏好设置中启用FinderSync扩展的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在将FinderSync扩展集成到我的Cocoa应用程序中,以显示文件和文件夹中的标志.查看以下两种情况:
I am integrating FinderSync Extension in my Cocoa Application to show badges in files and folders. Look at the below two scenario:
- 当我使用FinderSync Extension(例如DemoFinderSync)运行应用程序时,请看下图的蓝色弹出窗口,在这种情况下,Extension被添加到带有勾号"的系统偏好设置"中,并且也将该主体类称为"FinderSync.m".
- 当我使用应用程序方案"(例如DemoApp)运行应用程序时,请看下图的蓝色弹出窗口,在这种情况下,扩展名"被添加到系统偏好设置"中,但没有选中标记,并且主体类"FinderSync.m"没有呼叫和FinderSync扩展程序在这种情况下不起作用.
有人知道如何使用第二种情况在系统偏好设置中启用Finder扩展吗?
Does anybody have an idea how to enable Finder Extension in the System Preference using second scenario?
推荐答案
我得到了解决方案:
启用扩展程序的代码(捆绑ID)
Code to Enable Extension (bundle ID)
system("pluginkit -e use -i YourAppBundleID")
禁用扩展程序的代码(捆绑ID)
Code to Disable Extension (bundle ID)
system("pluginkit -e ignore -i YourAppBundleID")
在我使用之前:
system("pluginkit -e use -i AppBundleID.FinderSync")
因此只需删除".FinderSync"即可.
so just remove ".FinderSync" its working.
这篇关于如何在macOS系统偏好设置中启用FinderSync扩展的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!