is it po开发者_运维百科ssible to get an NSWindow to block everything in my application just like an Alert panel so that it is the key window until closed?
An alert is a simple modal window, you can run yours with
[NSApp runModalForWindow: myNSWindow];
is it po开发者_运维百科ssible to get an NSWindow to block everything in my application just like an Alert panel so that it is the key window until closed?
An alert is a simple modal window, you can run yours with
[NSApp runModalForWindow: myNSWindow];
精彩评论