LoginSignup
1
0

More than 5 years have passed since last update.

Macアプリでmodalなシートを表示する

Posted at
sheetの表示
  [NSApp beginSheet:self.sheetWindow
     modalForWindow:self.window
      modalDelegate:self
didEndSelector:@selector(didEndSheet:returnCode:contextInfo:)
        contextInfo:nil];
sheetを非表示にする
- (void)didEndSheet:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo {
  [self.sheetWindow orderOut:self];
}
モーダルセッション終了
[NSApp endSheet:self.sheetWindow];
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0