如何判断NSPanel何时获得焦点或成为关键?

时间:2011-12-02 16:21:29

标签: objective-c cocoa xcode4 nswindowcontroller nspanel

我正在XCode4中编写一个Cocoa / Objective-C应用程序,我需要知道我的首选项面板何时打开。我需要一些像windowDidBecomeKey这样的回调;我尝试按照this question中提供的解决方案进行操作,但windowDidBecomeKeywindowDidExpose都不作为委托方法出现(但其他方式,如windowDidLoadwindowWillLoad等)。

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

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”

1 个答案:

答案 0 :(得分:8)

NSWindowDelegate协议具有以下方法

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

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

NSWindowDidResignKeyNotification
NSWindowDidBecomeKeyNotification

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