如何自动使finder同步扩展加载?

时间:2017-05-05 09:25:54

标签: cocoa findersync

我创建了一个cocoa应用程序项目,并添加了目标" Finder同步扩展程序"。然后" finderSync.appex"将被放到" ... / Contens / Plugins /"夹。但是当我启动应用程序时,扩展程序不会自动加载,我应该手动加载吗?我怎么加载它?

从Apple开发指南中,它说:

For OS X to recognize and automatically load the Finder Sync extension, the extension target’s info.plist file must contain the following entries:

<key>NSExtension</key>
<dict>
    <key>NSExtensionAttributes</key>
    <dict/>
    <key>NSExtensionPointIdentifier</key>
    <string>com.apple.FinderSync</string>
    <key>NSExtensionPrincipalClass</key>
    <string>$(PRODUCT_MODULE_NAME).FinderSync</string>
</dict>

我已按上述方式设置,但确实无法正常工作。

1 个答案:

答案 0 :(得分:1)

您需要在Finder中注册您的扩展程序:

pluginkit -a <path you your appex>

您可能还需要告诉Finder启用您的扩展程序:

pluginkit -e use -i <ID of you appex>