NSNotificationCenter+RACSupport.h 419 B

12345678910111213141516171819
  1. //
  2. // NSNotificationCenter+RACSupport.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Josh Abernathy on 5/10/12.
  6. // Copyright (c) 2012 GitHub. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class RACSignal;
  10. @interface NSNotificationCenter (RACSupport)
  11. // Sends the NSNotification every time the notification is posted.
  12. - (RACSignal *)rac_addObserverForName:(NSString *)notificationName object:(id)object;
  13. @end