就像在 NSWindow 中单击按钮后显示的 NSPanel。

我找了很多,但没有简单的例子。
谢谢你的帮助。

最佳答案

可以这样做:

-(IBAction)showButtonAction:(id)sender {
    [[NSApplication sharedApplication] beginSheet:panelOutlet
                                   modalForWindow:self.window
                                    modalDelegate:self
                                   didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
                                      contextInfo:nil];
}

注意力:



结果:

关于xcode - 如何创建从 NSWindow 模态弹出的 NSPanel( cocoa 编程),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13881164/

10-09 21:11