Objective-c – Cocoa HUD window – how to turn off topmost

cocoanswindowobjective c

I've wrote some small cocoa app and it's main window has HUD style.
The problem is – when I set HUD style Interface Builder automatically also sets Utility style – which make the main window topmost (always visible over every other windows). Is there a way to get HUD style panel/window but without making it topmost?

Best Answer

As it turns out - there's a pretty simple solution for my topmost problem:

[hudPanel setLevel: NSNormalWindowLevel];

Makes it act like a normal window that isn't topmost.

Related Topic