The name NSNotification I have to listen to is this NSMetadataQueryDidUpdateNotification. Here is how I did it:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(queryDidUpdate:) name:NSMetadataQueryDidUpdateNotification object:query];
...
-(void)queryDidUpdate:(NSNotification *)notification {
}
source
share