当用户清空垃圾箱时,我的可可应用程序将如何收到通知。这是我到目前为止所拥有的:
NSNotificationCenter *notCenter = [[NSWorkspace sharedWorkspace]
notificationCenter];
AppDelegate *mainController = [[AppDelegate alloc] init];
[notCenter addObserver:mainController
selector:@selector(handleTrashEmpty)
name:NSWorkspaceRecycleOperation object:nil];
但是当用户清空垃圾箱时什么都没有出现。任何想法为什么此代码不起作用?