objective-c – NSWorkspacedidmountNotify 可能是通用的NSWorkspace

objective-c – NSWorkspacedidmountNotify 可能是通用的NSWorkspace,第1张

概述我是一名经验丰富的C/C++程序员,但却是ObjC的新成员.我正试图在Mac OSX项目中捕获NSWorkspacedidmountnofification. 我将回调添加到我的app delegate界面. - (void)mediaMounted:(NSNotification *)notification; 实施包括 - (void)mediaMounted:(NSNotification 我是一名经验丰富的C/C++程序员,但却是ObjC的新成员.我正试图在Mac OSX项目中捕获NSWorkspacedIDmountnofification.

我将回调添加到我的app 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

我确认Instance 0x101340af0是我的OSNAppDelegate self,但我不明白我还需要做什么,以便识别选择器.

解决方法 你的选择器应该是:

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全部内容,希望文章能够帮你解决objective-c – NSWorkspacedidmountNotify /可能是通用的NSWorkspace所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1230415.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存