objective-c – 如何为Mac App创建一个帮助应用程序,以便在用户登录时启动它?

前端之家收集整理的这篇文章主要介绍了objective-c – 如何为Mac App创建一个帮助应用程序,以便在用户登录时启动它?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

解决方法

+ (void)startHelper {
    NSURL *helperURL = [[[NSBundle mainBundle] bundleURL] URLByAppendingPathComponent:@"Contents/Library/LoginItems/YourHelper.app" isDirectory:YES];
    OSStatus status = LSRegisterURL((CFURLRef)helperURL,YES);
    if (status != noErr) {
        NSLog(@"Failed to LSRegisterURL '%@': %jd",helperURL,(intmax_t)status);
    }


    Boolean success = SMLoginItemSetEnabled(CFSTR("com.yourcompany.helper-CFBundleIdentifier-here"),YES);
    if (!success) {
        NSLog(@"Failed to start Helper");
    }
}

请注意,Helper必须与主应用程序一起打包在“Contents / Library / LoginItems”目录中.您将需要在构建期间创建它,并在那里复制帮助器.

原文链接:https://www.f2er.com/c/115664.html

猜你在找的C&C++相关文章