Skip to content

Instantly share code, notes, and snippets.

@searls
Created February 3, 2010 05:53
Show Gist options
  • Save searls/293366 to your computer and use it in GitHub Desktop.
Save searls/293366 to your computer and use it in GitHub Desktop.
@implementation NSNotificationCenter(TXNotificationCenter)
+ (void)registerAction:(SEL)action forName:(NSString*)name {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:action
name:name
object:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment