| 1234567891011121314151617181920 |
- //
- // NSText+RACSignalSupport.h
- // ReactiveCocoa
- //
- // Created by Justin Spahr-Summers on 2013-03-08.
- // Copyright (c) 2013 GitHub, Inc. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- @class RACSignal;
- @interface NSText (RACSignalSupport)
- /// Returns a signal which sends the current `string` of the receiver, then the
- /// new value any time it changes.
- - (RACSignal *)rac_textSignal;
- @end
|