vote up 2 vote down star
1

Just wondering how I can make my app open automatically at login, but make this be able to be toggled on and off using a check box in the preferences window.

flag

Which system are you targeting? It's different depending if you want 10.5, 10.4 or pre-10.4 – Jason Coco May 2 at 15:47
Leopard 10.5 .... – Joshua May 2 at 16:13

4 Answers

vote up 6 vote down check

There is a decent description of what to do at CocoaDev.

Basically, you'll want to use the API in LaunchServices/LSSharedFileList.h if you can target Mac OS X 10.5 or later. Before 10.5 there was no clean API, so you have to manually manipulate the login items (Sample code at the Developer Connectiong).

Here's the sample code for Leopard I mentioned in the comments. Found via this blog post. The code you need to enable or disable startup at login is in Controller.m.

link|flag
Sorry, but that doesn't seem to explain it. – Joshua May 2 at 16:15
Thats really old, I'm using leopard. Does it still work? – Joshua May 2 at 16:19
1  
What you should be using is the LaunchServices/LSSharedFileList.h API. See secondgear-public.googlecode.com/svn/trunk/… for some sample code. The code you need is in Controller.m – Naaff May 2 at 16:26
Thanks For That! – Joshua May 2 at 20:14
vote up 4 vote down

Call the method pasted below with a file URL pointing at your application to add it to the current user's login items.

To disable again, you'll need to get that same loginListRef, convert it to an array, and iterate through it until you find the item with the url you want to disable. Finally, call LSSharedFileListItemRemove with the appropriate arguments.

Good luck :)

- (void)enableLoginItemWithURL:(NSURL *)itemURL
{
	LSSharedFileListRef loginListRef = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL);

	if (loginListRef) {
		// Insert the item at the bottom of Login Items list.
		LSSharedFileListItemRef loginItemRef = LSSharedFileListInsertItemURL(loginListRef, 
										     kLSSharedFileListItemLast, 
										     NULL, 
										     NULL,
										     (CFURLRef)itemURL, 
										     NULL, 
										     NULL);		
		if (loginItemRef) {
			CFRelease(loginItemRef);
		}
		CFRelease(loginListRef);
	}
}
link|flag
What do I replace this with: // Insert the item at the bottom of Login Items list. ? And how would I get that same loginListRef, convert it to an array, and iterate through it until you find the item with the url you want to disable? – Joshua May 2 at 19:41
Or just make it toggle using a checkbox, how would i do that? – Joshua May 2 at 19:46
Hi Joshua, There's quite a lot of ground to cover there. The code I posted should help you figure out how to add something to the login items. Actually hooking that up to a checkbox should be trivial if you're already a bit comfortable working on a Cocoa project. If you're not, I'd recommend starting here: tinyurl.com/3z4r9b – Dirk Stoop May 2 at 20:30
vote up 1 vote down

See also SO question: Register as login item with cocoa

link|flag
vote up 1 vote down

Can you click on the application when its open in the dock, and select "open at login?" that's what I use for standard applications, and it should work for the ones you make as well.

link|flag
I admit this would always have to be specifically set by the user, and I like your idea of having it as a preference in the application. – CrazyJugglerDrummer May 2 at 16:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.