gpt4 book ai didi

objective-c++ - NSWorkspacedidmountNotify/可能是通用的 NSWorkspace

转载 作者:行者123 更新时间:2023-12-04 08:37:14 25 4
gpt4 key购买 nike

我是一名经验丰富的 C/C++ 程序员,但对 ObjC++ 不熟悉。我正在尝试在 Mac OSX 项目中捕获 NSWorkspacedidmountnofification。

我将回调添加到我的应用委托(delegate)界面。

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

实现包括
- (void)mediaMounted:(NSNotification *)aNotification {
NSLog(@"mediaMounted volume change.");
}

在我的 applicationDidFinishLaunching 中,我将自己添加到通知中心。
NSNotificationCenter* ncenter = [[NSWorkspace sharedWorkspace] notificationCenter];
[ncenter addObserver: self
selector: @selector(mediaMounted)
name: NSWorkspaceDidMountNotification
object: nil];

但是,当我运行并挂载磁盘时,我看到:
 2012-08-29 09:52:31.753 OSN[2203:903] -[OSNAppDelegate mediaMounted]: unrecognized selector sent to instance 0x101340af0
2012-08-29 09:52:31.756 OSN[2203:903] -[OSNAppDelegate mediaMounted]: unrecognized selector sent to instance 0x101340af0

我确认实例 0x101340af0 是我的 OSNAppDelegate 自我,但我不明白我还需要做什么才能识别选择器。

最佳答案

您的选择器应该是:
mediaMounted:不是 mediaMounted .

您的实现将 NSNotification 作为参数,而不是什么。

您可以通过以下方式验证您的选择器:

if( [self respondsToSelector:@selector(mediaMounted)] )
{
NSLog(@"Good to go");
}

示例:
// this selector
@selector(test)

// will call this method
- (void)test{ }

// but this selector, noting the :
@selector(test:)

// would call this method
- (void)test:(id)sender{ }

你可以阅读选择器 here .

关于objective-c++ - NSWorkspacedidmountNotify/可能是通用的 NSWorkspace,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12185435/

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