Snow Leopard 中 NSWorkspace 和 NSNotificationCentre 的基于块的 API 存在问题
Posted
技术标签:
【中文标题】Snow Leopard 中 NSWorkspace 和 NSNotificationCentre 的基于块的 API 存在问题【英文标题】:Issue with NSWorkspace and NSNotificationCentre's block-based API in Snow Leopard 【发布时间】:2009-11-12 23:01:00 【问题描述】:我在使用 Snow Leopard 新的基于块的 API 来观察来自 NSWorkspace 的 NSNotificationCenter 的通知时遇到了一些问题。
如果我使用传统的基于选择器的方法注册通知,那么我能够观察到所需的通知。如果我尝试使用带块的新方法,那么它不起作用。
在下面的代码块中,将 usingBlockNotifications 设置为 YES 或 NO 应该会产生相同的结果,即当应用程序启动时,“didReceiveNoticationTest: called”会打印到控制台,但是当它设置为 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");
【问题讨论】:
【参考方案1】:我敢说这是一个错误。
以下代码打印两个通知。如果您删除选择器版本,则不会打印任何内容。如果您删除块版本,选择器版本仍会打印。
-(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.
【讨论】:
谢谢你——很高兴不只是我!我已经向 Apple 提交了一个错误。【参考方案2】:重新阅读该方法的文档,特别是部分:
返回值
一个对象或符合 到 NSObject 协议。
您必须保留返回值作为 只要你想注册 存在于通知中心。
【讨论】:
他做了什么。 “[_notifcationObserver retain];
”以上是关于Snow Leopard 中 NSWorkspace 和 NSNotificationCentre 的基于块的 API 存在问题的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Mac OSX 10.6.4 Snow leopard 中使用 iOS 5 安装 xcode 4.2
Snow Leopard 中 NSWorkspace 和 NSNotificationCentre 的基于块的 API 存在问题