This question already has an answer here:
- Register as Login Item with Cocoa? 5 answers
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.
|
This question already has an answer here:
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. |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
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(dead) 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. |
|||||||||||||||||
|
|
Here's some code that I use, it's based on the Growl source.
If you want an easy to implement checkbox, make a
|
|||
|
|
|
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 :)
|
|||||||
|
|
See also SO question: Register as login item with cocoa |
|||
|
|
|
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. |
|||||
|