Cocoa: Hide one application
Posted
by Craig
on Stack Overflow
See other posts from Stack Overflow
or by Craig
Published on 2009-06-12T22:32:50Z
Indexed on
2010/05/23
22:41 UTC
Read the original article
Hit count: 375
Is it possible to hide one specific application using cocoa?
I know you can hide all other applications using the following code
[[NSWorkspace sharedWorkspace] performSelectorOnMainThread:@selector(hideOtherApplications) withObject:NULL waitUntilDone:NO];
But is it possible to hide just one specific application say Safari for example?
© Stack Overflow or respective owner