Custom sheets don't spontaneously show themselves. Right before you send
messages to display a sheet, reconfigure the sheet as desired. Better yet, add
a method to the window controller for the sheet and implement that method to
both do the special configuration and show the sheet on the specified window.
Make all code that shows the sheet call through the method you added.
Inside your window controller subclass:
- (void)configureAndShowSpecialSheetOnWindow:(NSWindow *)aWindow
{
// do your configuration
// show your sheet on aWindow
}
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]