A window (or panel) without a title cannot become a key, so it cannot get focus. You must subclass it and override its method - (BOOL)canBecomeKey , for example:
@interface MyPanel : NSPanel @end @implementation MyPanel - (BOOL)canBecomeKeyWindow { return YES; } @end
source share