Re: Possible to load window from nib in thread from Finder CM plugin

2009-05-28 Thread Nick Zitzmann
On May 28, 2009, at 7:37 AM, Aaron London wrote: Is it possible from that thread to load a NSWindow from a nib and be able to have that window respond to UI events? No; it is a bad idea to load nibs in threads other than the main thread. You can't count on both the AppKit and instantiated

Possible to load window from nib in thread from Finder CM plugin

2009-05-28 Thread Aaron London
I'm working on a Finder CM plugin that needs a more complex UI for some menu item commands than CFUserNotificationCreate provides. All menu item commands for this CM perform work via an NSObject derived class on a thread so as not to block the Finder. Is it possible from that thread to load