Skip to content

Instantly share code, notes, and snippets.

@0xced
Created April 28, 2012 12:53
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save 0xced/2518880 to your computer and use it in GitHub Desktop.
Save 0xced/2518880 to your computer and use it in GitHub Desktop.
Find all observers for a notification name (answers http://twitter.com/rossetantoine/status/195778914277269504)
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
@interface NSNotificationCenter (AllObservers)
- (NSSet *) my_observersForNotificationName:(NSString *)notificationName;
@end
@implementation NSNotificationCenter (AllObservers)
const static void *namesKey = &namesKey;
+ (void) load
{
method_exchangeImplementations(class_getInstanceMethod(self, @selector(addObserver:selector:name:object:)),
class_getInstanceMethod(self, @selector(my_addObserver:selector:name:object:)));
}
- (void) my_addObserver:(id)notificationObserver selector:(SEL)notificationSelector name:(NSString *)notificationName object:(id)notificationSender
{
[self my_addObserver:notificationObserver selector:notificationSelector name:notificationName object:notificationSender];
if (!notificationObserver || !notificationName)
return;
NSMutableDictionary *names = objc_getAssociatedObject(self, namesKey);
if (!names)
{
names = [NSMutableDictionary dictionary];
objc_setAssociatedObject(self, namesKey, names, OBJC_ASSOCIATION_RETAIN);
}
NSMutableSet *observers = [names objectForKey:notificationName];
if (!observers)
{
observers = [NSMutableSet setWithObject:notificationObserver];
[names setObject:observers forKey:notificationName];
}
else
{
[observers addObject:notificationObserver];
}
}
- (NSSet *) my_observersForNotificationName:(NSString *)notificationName
{
NSMutableDictionary *names = objc_getAssociatedObject(self, namesKey);
return [names objectForKey:notificationName] ?: [NSSet set];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment