1

我在使用 Snow Leopard 的新的基于块的 API 来观察来自 NSWorkspace 的 NSNotificationCenter 的通知时遇到了一些麻烦。

如果我使用传统的基于选择器的方法注册通知,那么我能够观察到所需的通知。如果我尝试使用需要一个块的新方法,那么它就不起作用。

在下面的代码块中,将 usingBlockNotifications 设置为 YES 或 NO 应该会产生相同的结果,即在应用程序启动时将“didReceiveNoticationTest:已调用”打印到控制台,但是当它设置为 YES 时我没有收到消息。

关于我做错了什么有什么建议吗?

-(void)awakeFromNib

{

 BOOL usingBlockNotifications = YES;

 _notifcationObserver = nil;
 NSNotificationCenter *nc = [[NSWorkspace sharedWorkspace] notificationCenter];

 if (usingBlockNotifications)
 { 
  _notifcationObserver = 
  [nc addObserverForName:NSWorkspaceDidLaunchApplicationNotification
      object:[NSWorkspace sharedWorkspace]
       queue:nil
     usingBlock:^(NSNotification *arg1) {
      [self didReceiveNoticationTest:arg1];
     }];
  [_notifcationObserver retain];
 } else {
  [nc addObserver:self
      selector:@selector(didReceiveNoticationTest:)
       name:NSWorkspaceDidLaunchApplicationNotification
     object:[NSWorkspace sharedWorkspace]];
 }

}

-(void)didReceiveNoticationTest:(NSNotification *)notification
{
 NSLog(@"didReceiveNoticationTest: called");
}
4

2 回答 2

3

我敢说这是一个错误。

以下代码打印两个通知。如果您删除选择器版本,则不会打印任何内容。如果您删除块版本,选择器版本仍会打印。

-(void)didReceiveNoticationTest1:(NSNotification *)notification
{
    NSLog(@"1: didReceiveNoticationTest: called");
}
-(void)didReceiveNoticationTest2:(NSNotification *)notification
{
    NSLog(@"2: didReceiveNoticationTest: called");
}

-(void)awakeFromNib

{
    NSNotificationCenter *nc = [[NSWorkspace sharedWorkspace] notificationCenter];

    [nc addObserver:self
           selector:@selector(didReceiveNoticationTest1:)
               name:NSWorkspaceDidLaunchApplicationNotification
             object:[NSWorkspace sharedWorkspace]];

    [[nc addObserverForName:NSWorkspaceDidLaunchApplicationNotification
                     object:[NSWorkspace sharedWorkspace]
                      queue:nil
                 usingBlock:^(NSNotification* arg1)
                            {
                                [self didReceiveNoticationTest2:arg1];
                            }] retain]; // this will leak.
}
于 2009-11-12T23:59:31.190 回答
0

重新阅读该方法的文档,特别是部分:

返回值

一个对象或符合 NSObject 协议。

只要您希望注册存在于通知中心,就必须保留返回值

于 2010-01-08T22:51:40.157 回答