1

我正在 XCode4 中编写一个 Cocoa/Objective-C 应用程序,我需要知道我的首选项面板何时打开。我需要一些像windowDidBecomeKey这样的回调;我试图遵循这个问题中提供的解决方案,但既没有也没有windowDidBecomeKey作为windowDidExpose委托方法出现(但其他方法,如windowDidLoad,windowWillLoad等)。

为了澄清我所说的“不显示为委托方法”的确切含义,我的意思是当我开始输入方法名称时它们不会出现在自动完成中。无论如何,我确实尝试定义它们,但它们从未被调用过。

对象是否NSPanel缺少这些方法,还是我需要做更多的事情?

目前,我有一个界面PrefWindowController

PrefWindowController.h:

#import <Cocoa/Cocoa.h>

@interface PrefWindowController : NSWindowController
    //Delegate methods like windowDidBecomeKey appear to not be available here
@end

PrefWindowController.m:

@implementation PrefWindowController

- (id)initWithWindow:(NSWindow *)window
{
    self = [super initWithWindow:window];
    if (self) {
        NSAlert *alert = [[[NSAlert alloc] init] autorelease];
        [alert setMessageText:@".."];
        [alert runModal];
    }

    return self;
}

- (void)windowDidLoad
{
    NSAlert *alert = [[[NSAlert alloc] init] autorelease];
    [alert setMessageText:@"Loaded"];
    [alert runModal];
}

@end

当应用程序启动时从 .xib 加载窗口时,windowDidLoad会触发并显示上面定义的通知。我这样做只是为了测试方法实际上被调用了。

关于如何在面板成为关键或成为焦点时获得回调的任何建议都会非常有帮助。

更新:

我向windowDidBecomeKey窗口控制器添加了一个方法,如下所示:

PrefWindowController.h:

- (void)windowDidBecomeKey:(NSNotification *)notification;

PrefWindowController.m:

- (void)windowDidBecomeKey:(NSNotification *)notification
{
    NSLog(@"Test");
}

我第一次打开窗口时会记录测试消息,但在我的main.m文件中的返回行上出现错误:

线程 1:程序接收信号:“EXC_BAD_ACCESS”

4

1 回答 1

8

NSWindowDelegate协议有以下方法

- (void)windowDidBecomeKey:(NSNotification *)notification
- (void)windowDidResignKey:(NSNotification *)notification

因此您可以将 NSWindowController 设置为 NSWindow 委托以获取此回调。您还可以注册这些通知:

NSWindowDidResignKeyNotification
NSWindowDidBecomeKeyNotification

NSPanel 是一个 NSWindow 子类,因此所有这些行为都适用于您的情况。

于 2011-12-02T16:25:47.877 回答