A window in OS X that slides down from the top of its parent window.
One of the feature for OSX that creates a window that slides from top to the parent window..called as Sheet
.
This is modal to the window.
This is used as:
- (IBAction)showSheet:(id)sender {
[NSApp beginSheet:self.sheetWindow
modalForWindow:self.window
modalDelegate:self
didEndSelector:nil
contextInfo:nil];
}
- (IBAction)closeSheet:(id)sender{
[NSApp endSheet:self.sheetWindow];
[self.sheetWindow orderOut:nil];
}