禁用&启用不会启动取景器同步扩展程序

时间:2017-05-18 05:30:37

标签: objective-c xcode8 macos-sierra findersync

enter image description here

可以在“系统偏好设置”中的扩展程序设置中启用或禁用Finder Sync Extensions。

即使启用了扩展程序的复选标记,我的扩展程序也无法启动应用程序。

所以要启动扩展程序,我会禁用我的扩展程序并再次启用它。这不是推出扩展程序的应用程序吗?

因此想知道我是否遗漏了任何方面。

注意:如果应用程序正在运行,并且我禁用了扩展程序,则会退出扩展程序应用程序(需要一些时间才能执行此操作)

我的Finder Sync Extension的Info.Plist。 enter image description here

 <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleDisplayName</key>
    <string>My Finder Integration</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>XPC!</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>LSMinimumSystemVersion</key>
    <string>$(MACOSX_DEPLOYMENT_TARGET)</string>
    <key>LSUIElement</key>
    <true/>
    <key>NSExtension</key>
    <dict>
        <key>NSExtensionAttributes</key>
        <dict/>
        <key>NSExtensionPointIdentifier</key>
        <string>com.apple.FinderSync</string>
        <key>NSExtensionPrincipalClass</key>
        <string>FinderSync</string>
    </dict>
    <key>NSHumanReadableCopyright</key>
    <string>Copyright © **** All rights reserved.</string>
    <key>NSPrincipalClass</key>
    <string>NSApplication</string>
    <key>NSSupportsAutomaticGraphicsSwitching</key>
    <true/>
</dict>
</plist>

1 个答案:

答案 0 :(得分:0)

根据此documentation,密钥NSExtensionPrincipalClass的值应包含由.分隔的模块名称:

<string>$(PRODUCT_MODULE_NAME).FinderSync</string>