I have an application that has LSUIElement = 1 in the Info.plist. When I run the application, a dock item and toplevel menu bar is created for it. Why?

EDIT:

I was using a library that was calling TransformProcessType(), clobbering my Info.plist configuration.

link|improve this question

Can you post the app somewhere, or at least your Info.plist? And please, learn how to ask questions. – Nicholas Riley May 4 '10 at 3:42
5  
i thought you're question was just fine. – arbales Oct 20 '10 at 19:06
feedback

2 Answers

up vote 8 down vote accepted

Go to your Info.plist file, and add a new key-value pair, or type Boolean. Start typing in the key the phrase "Application is agent". It should auto-complete for you. Then check the checkbox.

This is how I create my agent applications, and it works every time!

link|improve this answer
It is a string (not a boolean) according to this Apple page: developer.apple.com/library/ios/#documentation/general/… – knocte Apr 10 at 21:00
feedback

The 1 must be a string, not a number (according to the documentation of LSUIElement). Something to try anyway.

link|improve this answer
Correct, according to this: developer.apple.com/library/ios/#documentation/general/… – knocte Apr 10 at 21:00
feedback

Your Answer

 
or
required, but never shown

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