LooPer
LooPer

Reputation: 1479

Cocoa topmost window

How could I get one of my Cocoa application windows to get (and maintain) on top all desktop windows while my apllication stay running?

Upvotes: 0

Views: 1173

Answers (2)

David
David

Reputation: 14414

You have to make the window key and order it to front. Use this

[[myWindowController window] makeKeyAndOrderFront:self];

Upvotes: 0

Related Questions