gpt4 book ai didi

objective-c - 窗口 Controller 委托(delegate)错误

转载 作者:行者123 更新时间:2023-12-03 17:51:40 25 4
gpt4 key购买 nike

我使用此代码在模态视图中显示窗口 Controller 窗口。我在窗口 Controller 中有针对窗口中按钮的操作。当我单击按钮时,应用程序崩溃并且没有收到错误消息。我设置委托(delegate)有错吗?

[[NSApplication sharedApplication] beginSheet:windowObj.window modalForWindow:self.view.window modalDelegate:windowObj didEndSelector:nil contextInfo:nil];

最佳答案

在工作表显示窗口之前,

windowObj 正在被释放(如果您正在使用它,可能是由 ARC 释放)。您应该向为此使用的任何类添加一个强属性,并将 windowObj 设置为它,如下所示:

@property (strong) MyWindowController *windowObj;
...
// Instantiate the window controller
self.windowObj = [[windowController alloc] initWithWindowNibName:@"windowController"];
[[NSApplication sharedApplication] beginSheet:windowObj.window modalForWindow:self.view.window modalDelegate:windowObj didEndSelector:nil contextInfo:nil];

关于objective-c - 窗口 Controller 委托(delegate)错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24773722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com