1
vote
How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost?
A simpler route that may work better for you is to make your app background-only. The discussion on CocoaDev of the LSUIElement …
5
votes
How do I find the correct case of a filename?
Use FSPathMakeRef() on both paths, and then use FSCompareFSRefs() to see if they're the same file/folder. You can then use FSRefMakePath() to get the canonical representation, but if you're displa …
4
votes
Cocoa Won’t Capture Shift Modifier?
First, -charactersIgnoringModifiers doesn't ignore the shift key, so you will still get shifted characters (i.e UPPERCASE and !%#$%^&*) returned from it. What's probably happening in your func …
