For Sandboxed apps, to create a launch item, Apple suggest you use LSRegisterURL(..) and SMLoginItemSetEnabled(..) along with a helper tool. I've set up everything how I want it but I would like a way (not storing a preference value) to get the status of "if it is registered". Basically a way to perform the same action as SMLoginItemGetEnabled(...) would.
EDIT: Here is my final code thanks to Rob Keniger's answer:
- (BOOL)startAtLogin {
NSDictionary *dict = (NSDictionary*)SMJobCopyDictionary(kSMDomainUserLaunchd,
CFSTR("com.yourcompany.app"));
BOOL contains = (dict!=NULL);
[dict release];
return contains;
}
___launchdJobIsEnabled?). You should file an official bug / feature request at bugreporter.apple.com. And you'll probably have to write a preference, anyways. – Michael Dautermann Nov 21 '11 at 23:36