在我的Cocoa应用程序中,我有一个finder同步扩展。
启动应用程序时,我的finder同步扩展程序不会自动启动。
我需要转到系统偏好设置 - >扩展并启用它。
如何确保在启动主应用程序(.app)文件时启动并启用查找程序同步扩展程序?
答案 0 :(得分:1)
结帐https://blog.codecentric.de/en/2018/09/finder-sync-extension/
其中有在应用启动时重启FinderSyncExtension 部分,其中包含有关如何在应用启动时重启FinderSyncExtension
并使其更加可靠的说明:
+ (void) restart
{
NSString* bundleID = NSBundle.mainBundle.bundleIdentifier;
NSString* extBundleID = [NSString stringWithFormat:@"%@.FinderSyncExt", bundleID];
NSArray<NSRunningApplication*>* apps = [NSRunningApplication runningApplicationsWithBundleIdentifier:extBundleID];
ASTEach(apps, ^(NSRunningApplication* app) {
NSString* killCommand = [NSString stringWithFormat:@"kill -s 9 %d", app.processIdentifier];
system(killCommand.UTF8String);
});
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t) (0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
NSString* runCommand = [NSString stringWithFormat:@"pluginkit -e use -i %@", extBundleID];
system(runCommand.UTF8String);
});
}