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